Skip to content

Commit

Permalink
fix: ts issues
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuaellis committed May 13, 2024
1 parent d37920b commit a04dd25
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion docs/stories/04-components/Accordion.stories.tsx
Expand Up @@ -54,7 +54,11 @@ const meta: Meta = {

export default meta;

type Story = StoryObj<Accordion.Props & Pick<Accordion.TriggerProps, 'caretPosition' | 'description' | 'title'>>;
type Story = StoryObj<
Accordion.Props &
Pick<Accordion.TriggerProps, 'caretPosition' | 'description' | 'title'> &
Pick<Accordion.HeaderProps, 'variant'>
>;

export const Base = {
argTypes: {
Expand Down
Expand Up @@ -16,7 +16,7 @@ exports[`ModalLayout should render component and match snapshot 1`] = `
padding-inline-end: 40px;
padding-inline-start: 40px;
position: fixed;
z-index: 4;
z-index: 310;
}
.c4 {
Expand Down

0 comments on commit a04dd25

Please sign in to comment.