Skip to content

Commit

Permalink
messed up styling
Browse files Browse the repository at this point in the history
  • Loading branch information
JuliaZel committed Feb 29, 2024
1 parent 0a24997 commit c4c03e8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
5 changes: 5 additions & 0 deletions src/app/api/file/route.client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ type IFile = z.infer<typeof File>;
* Extends the parameters of fetch() function to give types to the RequestBody.
*/
interface IRequest extends Omit<RequestInit, "body"> {





body: IFile;
}

Expand Down
5 changes: 4 additions & 1 deletion src/app/private/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ interface IPrivateLayout {
children: React.ReactNode;
}

const PrivateLayout = ({ children }: IPrivateLayout) => {
const PrivateLayout = ({


children }: IPrivateLayout) => {
return <UserProvider>{children}</UserProvider>;
};

Expand Down

0 comments on commit c4c03e8

Please sign in to comment.