Skip to content

Commit 0732cb8

Browse files
authored
Merge pull request #49 from trivikr/pnpm-format
chore: format missed files
2 parents d82565f + fa85f8f commit 0732cb8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/components/monacoTabs.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ const MonacoTabs: Component<{ tabs: Tab[]; compiled: string }> = (props) => {
77
const fileUri = Uri.parse(`file:///output_dont_import.tsx`);
88
const model = editor.createModel('', 'typescript', fileUri);
99
createEffect(() => {
10-
model.setValue(props.compiled.replace(/(https:\/\/cdn.skypack.dev\/)|(@[0-9][0-9.\-a-z]+)/g, ''));
10+
model.setValue(
11+
props.compiled.replace(/(https:\/\/cdn.skypack.dev\/)|(@[0-9][0-9.\-a-z]+)/g, ''),
12+
);
1113
});
1214
onCleanup(() => model.dispose());
1315

0 commit comments

Comments
 (0)