Skip to content

Commit

Permalink
Replaced Stack div tag by main
Browse files Browse the repository at this point in the history
  • Loading branch information
theoplawinski committed Jul 16, 2024
1 parent 7b62ae6 commit 4db8e91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Stack.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function Stack(props: IProps): JSX.Element {
]

return (
<div className={["Stack", props.className].filter((e) => e).join(" ")}>
<main className={["Stack", props.className].filter((e) => e).join(" ")}>
{previousPageIsMount && PrevRoute?.component && (
<PrevRoute.component
ref={prevRef}
Expand All @@ -93,7 +93,7 @@ function Stack(props: IProps): JSX.Element {
{...(CurrRoute.props || {})}
/>
)}
</div>
</main>
)
}

Expand Down

0 comments on commit 4db8e91

Please sign in to comment.