tide-design-system 2.0.49 → 2.0.50

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -12,7 +12,7 @@ import FoundationsGrid from '../src/stories/FoundationsGrid.stories';
12
12
  import FoundationsMargin from '../src/stories/FoundationsMargin.stories';
13
13
  import TideCarousel from '../src/stories/TideCarousel.stories';
14
14
 
15
- const cssRoot = import.meta.env.PROD ? '/public' : '/src/assets/css/realm';
15
+ const cssRoot = import.meta.env.PROD ? '/assets/css/realm' : '/src/assets/css/realm';
16
16
 
17
17
  const replaceRealmStyles = (realm: string) => {
18
18
  document.getElementById('realmStyles')?.remove();
@@ -47,7 +47,7 @@ const preview: Preview = {
47
47
  };
48
48
  },
49
49
  (story, context) => {
50
- const [args, updateArgs] = useArgs();
50
+ const [_args, updateArgs] = useArgs();
51
51
 
52
52
  return story({ ...context, updateArgs });
53
53
  },