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 c3430fe commit b20aa47Copy full SHA for b20aa47
packages/app/src/app/overmind/namespaces/editor/state.ts
@@ -236,15 +236,18 @@ export const state: State = {
236
},
237
devToolTabs: ({
238
currentSandbox: sandbox,
239
+ parsedConfigurations,
240
workspaceConfigCode: intermediatePreviewCode,
241
}) => {
242
if (!sandbox) {
243
return [];
244
}
245
- // TODO: Should this be code or files?
246
- // @ts-ignore
247
- const views = getPreviewTabs(sandbox, intermediatePreviewCode);
+ const views = getPreviewTabs(
+ sandbox,
248
249
+ intermediatePreviewCode
250
+ );
251
252
// Do it in an immutable manner, prevents changing the original object
253
return immer(views, draft => {
0 commit comments