Skip to content

Commit

Permalink
🏷️ #8 - fix: fix type error in stories file
Browse files Browse the repository at this point in the history
  • Loading branch information
svenvandescheur committed Jan 9, 2024
1 parent 856d0f7 commit 9275321
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/layout/layout.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export const SampleLayout = {
args: {
debug: true,
},
render: (args) => (
render: (args: { debug: boolean }) => (
<Container debug={args.debug}>
<Grid debug={args.debug}>
<Column span={12} debug={args.debug} data-testid="Header"></Column>
Expand Down

0 comments on commit 9275321

Please sign in to comment.