Skip to content

Commit

Permalink
fix: ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Niznikr committed Dec 9, 2024
1 parent e2188ed commit 1707f0e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"clean": "nx run-many --target=clean --all",
"e2e:a11y": "STORYBOOK_URL=http://127.0.0.1:8080/ pnpm playwright test",
"generate": "plop",
"graph": "nx affected:graph",
"graph": "nx graph --affected",
"storybook": "pnpm build:transform && sb dev -p 3000",
"storybook:build": "pnpm build:transform && sb build --quiet",
"test": "pnpm build:transform && vitest run --coverage",
Expand Down
4 changes: 2 additions & 2 deletions packages/components/stories/ToggleButtonGroup.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import type { Meta, StoryObj } from '@storybook/react';
import type { ComponentType } from 'react';

import { ToggleButton, ToggleButtonGroup, ToggleIconButton } from '../src';

const meta: Meta<typeof ToggleButtonGroup> = {
component: ToggleButtonGroup,
// @ts-ignore
subcomponents: { ToggleButton },
subcomponents: { ToggleButton } as Record<string, ComponentType<unknown>>,
title: 'Components/Buttons/ToggleButtonGroup',
parameters: {
status: {
Expand Down

0 comments on commit 1707f0e

Please sign in to comment.