Skip to content

Commit

Permalink
uno mas
Browse files Browse the repository at this point in the history
  • Loading branch information
rajsite committed Mar 27, 2024
1 parent 9dc069a commit 55600dd
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ import { anchorTabTag } from '../../anchor-tab';
import { tabsToolbarTag } from '../../tabs-toolbar';
import { buttonTag } from '../../button';

const tabsToolbarState = [false, true] as const;
type TabsToolbarState = (typeof tabsToolbarState)[number];
const tabsToolbarStates = [false, true] as const;
type TabsToolbarState = (typeof tabsToolbarStates)[number];

const metadata: Meta = {
title: 'Tests/Anchor Tabs',
Expand Down Expand Up @@ -47,7 +47,7 @@ const component = (
`;

export const anchorTabsThemeMatrix: StoryFn = createMatrixThemeStory(
createMatrix(component, [tabsToolbarState, disabledStates])
createMatrix(component, [tabsToolbarStates, disabledStates])
);

export const hiddenTabs: StoryFn = createStory(
Expand Down

0 comments on commit 55600dd

Please sign in to comment.