Skip to content

Commit e2b72c4

Browse files
committed
fix: remove deprecated @storybook/addon-interactions from config
In Storybook 10, interaction testing is built into the core and the addon-interactions package was deprecated. Remove it from the addons list to fix build failures caused by version mismatch.
1 parent 9dd15c7 commit e2b72c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.storybook/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import path from "path";
44

55
const config: StorybookConfig = {
66
stories: ["../src/browser/**/*.stories.@(ts|tsx)"],
7-
addons: ["@storybook/addon-links", "@storybook/addon-docs", "@storybook/addon-interactions"],
7+
addons: ["@storybook/addon-links", "@storybook/addon-docs"],
88
framework: {
99
name: "@storybook/react-vite",
1010
options: {},

0 commit comments

Comments
 (0)