Skip to content

Commit b0ceb2a

Browse files
marunrunclaude
authored andcommitted
fix(embedded): resolve theme context error in Loading component (#35168)
Co-authored-by: Claude <[email protected]> (cherry picked from commit 1f530d4)
1 parent 7fde43b commit b0ceb2a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

superset-frontend/src/embedded/index.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,14 +89,14 @@ const EmbededLazyDashboardPage = () => {
8989
};
9090

9191
const EmbeddedRoute = () => (
92-
<Suspense fallback={<Loading />}>
93-
<EmbeddedContextProviders>
92+
<EmbeddedContextProviders>
93+
<Suspense fallback={<Loading />}>
9494
<ErrorBoundary>
9595
<EmbededLazyDashboardPage />
9696
</ErrorBoundary>
9797
<ToastContainer position="top" />
98-
</EmbeddedContextProviders>
99-
</Suspense>
98+
</Suspense>
99+
</EmbeddedContextProviders>
100100
);
101101

102102
const EmbeddedApp = () => (

0 commit comments

Comments
 (0)