Skip to content

Commit

Permalink
fix: Auth url
Browse files Browse the repository at this point in the history
  • Loading branch information
HazAT committed Feb 16, 2024
1 parent 8c9faf3 commit ef37d66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/nextAuthSessionProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ type sessionProps = {
children: ReactNode;
};
function NextAuthSessionProvider({children}: sessionProps) {
return <SessionProvider>{children}</SessionProvider>;
return <SessionProvider basePath="/changelog/api/auth">{children}</SessionProvider>;
}

export default NextAuthSessionProvider;

0 comments on commit ef37d66

Please sign in to comment.