This is an automated email from the ASF dual-hosted git repository.
rusackas pushed a commit to branch developer_portal
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/developer_portal by this push:
new 8218dcadab direct dependency rather than goofy path.
8218dcadab is described below
commit 8218dcadabf4440ffd183d79e25402408f005933
Author: Evan Rusackas <[email protected]>
AuthorDate: Tue Jun 10 09:38:31 2025 -0600
direct dependency rather than goofy path.
---
docs/src/components/StorybookWrapper.jsx | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/docs/src/components/StorybookWrapper.jsx
b/docs/src/components/StorybookWrapper.jsx
index 284a27edff..ddb1d899ba 100644
--- a/docs/src/components/StorybookWrapper.jsx
+++ b/docs/src/components/StorybookWrapper.jsx
@@ -18,10 +18,7 @@
*/
import React from 'react';
-import {
- supersetTheme,
- ThemeProvider,
-} from '../../../superset-frontend/packages/superset-ui-core/lib';
+import { supersetTheme, ThemeProvider } from '@superset-ui/core';
// A simple component to display a story example
export function StoryExample({ component: Component, props = {} }) {