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 34ca468 commit bf2ad56Copy full SHA for bf2ad56
packages/next/src/next-devtools/dev-overlay/components/shadow-portal.tsx
@@ -37,7 +37,7 @@ export function ShadowPortal({ children }: { children: React.ReactNode }) {
37
if (portalNode.current.shadowRoot === null) {
38
shadowNode.current = portalNode.current.attachShadow({ mode: 'open' })
39
40
- // Storybook injects the Tailwind style tag from .storybook/main.ts on each load.
+ // Storybook injects the Tailwind style tag from .storybook/main.ts on each full load.
41
// When navigating to a different story, the injected style tag is removed within the iframe.
42
// To re-inject the style tag, we need to call `unuse()` since the `use()` function only runs
43
// once unless unused.
0 commit comments