From 4befe9a98864b5b395e5c31a0f5cb6940e440c84 Mon Sep 17 00:00:00 2001 From: Yann Braga Date: Mon, 3 Nov 2025 12:37:23 +0100 Subject: [PATCH] Core: Fix wrong import to fix Yarn PnP support --- code/core/src/component-testing/components/StatusBadge.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/core/src/component-testing/components/StatusBadge.tsx b/code/core/src/component-testing/components/StatusBadge.tsx index 23a3b26d13a1..7206e7385cc3 100644 --- a/code/core/src/component-testing/components/StatusBadge.tsx +++ b/code/core/src/component-testing/components/StatusBadge.tsx @@ -1,8 +1,8 @@ import React from 'react'; -import { type Color, styled, typography } from 'storybook/theming'; +import { TooltipNote, WithTooltip } from 'storybook/internal/components'; -import { TooltipNote, WithTooltip } from '../../components'; +import { type Color, styled, typography } from 'storybook/theming'; export type PlayStatus = 'rendering' | 'playing' | 'completed' | 'errored' | 'aborted';