From 2a74042b00dcfedb6c5c9ee1990e322b073de217 Mon Sep 17 00:00:00 2001 From: Doug Horner Date: Fri, 24 Jul 2026 02:22:31 -0400 Subject: [PATCH] =?UTF-8?q?fix(storybook):=20correct=20IconButton=20import?= =?UTF-8?q?=20path=20=E2=80=94=20manager=20build=20was=20broken=20on=20mai?= =?UTF-8?q?n?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR #337 imported IconButton from 'storybook/components', which is not an export of the storybook package (v10 exposes it at storybook/internal/components). Every PR's CI has failed on the merge commit since. One-line path fix; manager build verified locally. --- .storybook/manager.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.storybook/manager.ts b/.storybook/manager.ts index 379f70a5..3d38e187 100644 --- a/.storybook/manager.ts +++ b/.storybook/manager.ts @@ -1,7 +1,7 @@ import React from 'react'; import { addons, types } from 'storybook/manager-api'; import { create } from 'storybook/theming/create'; -import { IconButton } from 'storybook/components'; +import { IconButton } from 'storybook/internal/components'; import { ShareAltIcon } from '@storybook/icons'; // Brand theme configurations for the Storybook manager UI