Skip to content

Commit 3f4879e

Browse files
committed
chore: Fix for format
1 parent d0f044b commit 3f4879e

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/contexts/WebContainer/index.tsx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,12 @@ export const ContainerProvider: FC<{ children: ReactNode }> = memo(
6666
const [instance, setInstance] = useState<WebContainer>();
6767
useEffect(() => {
6868
(async () => {
69-
// biome-ignore lint/complexity/useLiteralKeys: This is a temporary solution
70-
const instance = window['__webcontainer'] || await WebContainer.boot({
71-
coep: 'none',
72-
});
69+
const instance =
70+
// biome-ignore lint/complexity/useLiteralKeys: This is a temporary solution
71+
window['__webcontainer'] ||
72+
(await WebContainer.boot({
73+
coep: 'none',
74+
}));
7375

7476
// biome-ignore lint/complexity/useLiteralKeys: This is a temporary solution
7577
if (!window['__webcontainer']) {

0 commit comments

Comments
 (0)