Skip to content

Commit

Permalink
fix: removes FormDiv from auth layout left over from rebasing
Browse files Browse the repository at this point in the history
  • Loading branch information
varortz committed May 20, 2024
1 parent 37f5205 commit 0a10848
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/app/(auth)/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
'use client';

import { ReactNode } from 'react';
import { FormDiv, OuterDiv } from './styles';
import { OuterDiv } from './styles';

export default function layout({ children }: { children: ReactNode }) {
return (
<OuterDiv>
<FormDiv>{children}</FormDiv>
</OuterDiv>
);
return <OuterDiv>{children}</OuterDiv>;
}

0 comments on commit 0a10848

Please sign in to comment.