Skip to content

Commit 4a5dea6

Browse files
authored
Emergency fix: disable sandbox host for now.
1 parent ed898dd commit 4a5dea6

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

packages/common/src/utils/url-generator.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,10 @@ export const frameUrl = (sandbox: Sandbox, append: string = '') => {
105105
}
106106

107107
let sHost = host();
108-
if (`https://${sHost}` in sandboxHost) {
109-
sHost = sandboxHost[`https://${sHost}`].split('//')[1];
110-
}
108+
// disable sandbox host for now because of .dev issues
109+
// if (`https://${sHost}` in sandboxHost) {
110+
// sHost = sandboxHost[`https://${sHost}`].split('//')[1];
111+
// }
111112
return `${location.protocol}//${sandbox.id}.${sHost}/${path}`;
112113
};
113114

0 commit comments

Comments
 (0)