We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 678adf6 commit 5a69663Copy full SHA for 5a69663
lib/utils.ts
@@ -39,7 +39,7 @@ export const getAppConfig = cache(async (headers: Headers): Promise<AppConfig> =
39
});
40
41
const remoteConfig: SandboxConfig = await response.json();
42
- const config: AppConfig = { sandboxId, ...APP_CONFIG_DEFAULTS };
+ const config: AppConfig = { ...APP_CONFIG_DEFAULTS, sandboxId };
43
44
for (const [key, entry] of Object.entries(remoteConfig)) {
45
if (entry === null) continue;
0 commit comments