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 9c009e8 commit 9a5946bCopy full SHA for 9a5946b
1 file changed
editor/scaffolds/code/index.tsx
@@ -86,7 +86,9 @@ export function CodeSegment() {
86
framework: framework_config,
87
asset_config: { skip_asset_replacement: true },
88
build_config: build_config,
89
- }).then(on_result);
+ })
90
+ .then(on_result)
91
+ .catch(console.error);
92
93
// build final code with asset fetch
94
if (!MainImageRepository.instance.empty) {
@@ -95,7 +97,9 @@ export function CodeSegment() {
95
97
96
98
asset_config: { asset_repository: MainImageRepository.instance },
99
100
101
102
103
}
104
105
}, [targetted?.id, framework_config?.framework]);
0 commit comments