Several Storybook story files fail type-checking and are part of the backlog currently masked by next.config.ts's ignoreBuildErrors (#2):
src/stories/components/Button.stories.tsx
src/stories/components/FormField.stories.tsx
src/stories/components/Modal.stories.tsx
src/stories/components/ProductCard.stories.tsx
These all share the same error shape (an import at column 37/27 across all four), suggesting one root cause — likely a stale @storybook/react type import — rather than four separate bugs.
To do: investigate the shared import error and fix across all four files; likely fast relative to the rest of the TS backlog.
Several Storybook story files fail type-checking and are part of the backlog currently masked by
next.config.ts'signoreBuildErrors(#2):src/stories/components/Button.stories.tsxsrc/stories/components/FormField.stories.tsxsrc/stories/components/Modal.stories.tsxsrc/stories/components/ProductCard.stories.tsxThese all share the same error shape (an import at column 37/27 across all four), suggesting one root cause — likely a stale
@storybook/reacttype import — rather than four separate bugs.To do: investigate the shared import error and fix across all four files; likely fast relative to the rest of the TS backlog.