Skip to content

Commit 2f8f965

Browse files
add missing parenthesis
1 parent f160afe commit 2f8f965

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/site/next.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ async function getDeploymentId() {
109109
if (OPEN_NEXT_CLOUDFLARE) {
110110
// If we're building for the Cloudflare deployment we want to set
111111
// an appropriate deploymentId (needed for skew protection)
112-
return await import('@opennextjs/cloudflare').getDeploymentId();
112+
return (await import('@opennextjs/cloudflare')).getDeploymentId();
113113
}
114114

115115
return undefined;

0 commit comments

Comments
 (0)