Skip to content

Commit 7e6aca3

Browse files
add missing parenthesis
1 parent 277143b commit 7e6aca3

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
@@ -134,7 +134,7 @@ async function getDeploymentId() {
134134
if (OPEN_NEXT_CLOUDFLARE) {
135135
// If we're building for the Cloudflare deployment we want to set
136136
// an appropriate deploymentId (needed for skew protection)
137-
return await import('@opennextjs/cloudflare').getDeploymentId();
137+
return (await import('@opennextjs/cloudflare')).getDeploymentId();
138138
}
139139

140140
return undefined;

0 commit comments

Comments
 (0)