Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
broccolinisoup committed Jul 23, 2024
1 parent cede298 commit 77ef1f7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 4 additions & 2 deletions docs/content/ActionMenu.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,8 @@ You can choose to have a different _anchor_ for the Menu depending on the applic

<ActionMenu.Overlay>
<ActionList showDividers>
<ActionList.Group><ActionList.GroupHeading>Live query</ActionList.GroupHeading>
<ActionList.Group>
<ActionList.GroupHeading>Live query</ActionList.GroupHeading>
<ActionList.Item>
<ActionList.LeadingVisual>
<SearchIcon />
Expand All @@ -130,7 +131,8 @@ You can choose to have a different _anchor_ for the Menu depending on the applic
</ActionList.Item>
</ActionList.Group>
<ActionList.Divider />
<ActionList.Group variant="subtle"><ActionList.GroupHeading>Layout</ActionList.GroupHeading>
<ActionList.Group variant="subtle">
<ActionList.GroupHeading>Layout</ActionList.GroupHeading>
<ActionList.Item>
<ActionList.LeadingVisual>
<NoteIcon />
Expand Down
2 changes: 2 additions & 0 deletions packages/react/src/PageLayout/PageLayout.features.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ export const NestedScrollContainer: StoryFn = args => (
<Placeholder label="Header" height={64} />
</PageLayout.Header>
<PageLayout.Content padding="normal" width="large">
{/* eslint-disable-next-line github/a11y-role-supports-aria-props */}
<Box sx={{display: 'grid', gap: 3}} tabIndex={0} aria-label="Page content">
{Array.from({length: args.numParagraphsInContent}).map((_, i) => (
<Box key={i} as="p" sx={{margin: 0}}>
Expand Down Expand Up @@ -334,6 +335,7 @@ export const ScrollContainerWithinPageLayoutPane: StoryFn = () => (
</Box>
</PageLayout.Pane>
<PageLayout.Content padding="normal" width="large">
{/* eslint-disable-next-line github/a11y-role-supports-aria-props */}
<Box sx={{display: 'grid'}} tabIndex={0} aria-label="Page content">
<Placeholder label="Page content" height={1600} />
</Box>
Expand Down

0 comments on commit 77ef1f7

Please sign in to comment.