Skip to content

Commit

Permalink
fix type issues
Browse files Browse the repository at this point in the history
  • Loading branch information
yannbf committed Jan 4, 2024
1 parent cd66c75 commit 04f1ec6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/ui/blocks/src/blocks/internal/InternalCanvas.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export const LayoutAsChildProp: Story = {
render: (args) => {
return (
<Canvas {...args}>
<StoryComponent of={ButtonStories.Primary} parameters={{ layout: 'fullscreen' }} />
<StoryComponent of={ButtonStories.Primary} />
</Canvas>
);
},
Expand All @@ -122,7 +122,7 @@ export const LayoutAsChildPropMultiple: Story = {
<Canvas {...args}>
<h1>Fullscreen</h1>
<StoryComponent of={ButtonStories.Secondary} />
<StoryComponent of={ButtonStories.Large} parameters={{ layout: 'fullscreen' }} />
<StoryComponent of={ButtonStories.Large} />
<StoryComponent of={ButtonStories.Primary} />
</Canvas>
);
Expand Down
1 change: 1 addition & 0 deletions code/ui/blocks/src/typings.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/* eslint-disable no-underscore-dangle */
/* eslint-disable @typescript-eslint/naming-convention */
declare module '*.md';
declare module '*.md?raw';

declare var __DOCS_CONTEXT__: any;
declare var PREVIEW_URL: any;
Expand Down

0 comments on commit 04f1ec6

Please sign in to comment.