Skip to content

Commit

Permalink
chore(fixtures): Use proper name for AuthLayout component (#11399)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobbe authored Aug 30, 2024
1 parent 1f5c396 commit f2f36a7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ type AuthLayoutProps = {
children?: React.ReactNode
}

const NavigationLayout = ({ children }: AuthLayoutProps) => {
const AuthLayout = ({ children }: AuthLayoutProps) => {
return (
<div className="auth-layout">
<nav>
Expand Down Expand Up @@ -44,4 +44,4 @@ const NavigationLayout = ({ children }: AuthLayoutProps) => {
)
}

export default NavigationLayout
export default AuthLayout

0 comments on commit f2f36a7

Please sign in to comment.