Skip to content

Commit

Permalink
well...
Browse files Browse the repository at this point in the history
  • Loading branch information
zbrydon committed Jul 12, 2024
1 parent 72e77ed commit 3ad01c2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ typography.ts

# managed by sku
*.less.d.ts
.eslintcache
.eslintrc
.prettierrc
.storybook/main.js
coverage/
dist-storybook/
Expand Down
3 changes: 3 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ dist-storybook-tmp/

# managed by sku
*.less.d.ts
.eslintcache
.eslintrc
.prettierrc
.storybook/main.js
coverage/
dist-storybook/
Expand Down
2 changes: 1 addition & 1 deletion src/components/TocRenderer.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ type Story = StoryObj<typeof Component>;

export const TocRenderer: Story = {
args: {
document: HeadingMarkdown,
document: HeadingMarkdown as MDX.Document,
children: (toc) => (
<Text>
<Stack space="small">
Expand Down
2 changes: 1 addition & 1 deletion src/components/WrapperRenderer.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default {
type Story = StoryObj<typeof Component>;
export const WrapperRenderer: Story = {
args: {
document: Wrapper,
document: Wrapper as MDX.Document,
children: ({ children }) => (
<Text>{Children.toArray(children).length} top-level node(s)</Text>
),
Expand Down

0 comments on commit 3ad01c2

Please sign in to comment.