Skip to content

Commit

Permalink
refactor: storybookControls display option 값 오탈자 개선
Browse files Browse the repository at this point in the history
  • Loading branch information
bytrustu committed Feb 29, 2024
1 parent a11c7d0 commit d72819c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/AppLayout/AppLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { styleToken } from '@/shared/styles';

export const AppLayout = ({ children }: PropsWithChildren) => (
<Box
as="section"
as="main"
backgroundColor={styleToken.color.white}
width="375px"
minWidth="375px"
Expand Down
2 changes: 1 addition & 1 deletion src/shared/styles/storybookControls.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const argTypes = {
options: containerTags,
},
display: {
options: ['flex', 'block', 'inline', 'inline-VStack', 'none', 'grid', 'inline-flex', 'inline-grid'],
options: ['flex', 'block', 'inline', 'inline-block', 'none', 'grid', 'inline-flex', 'inline-grid'],
},
flexDirection: {
options: ['row', 'column', 'row-reverse', 'column-reverse'],
Expand Down

0 comments on commit d72819c

Please sign in to comment.