Skip to content

Commit

Permalink
Append v0 to getCustomToken function
Browse files Browse the repository at this point in the history
  • Loading branch information
kamarmack committed Dec 25, 2023
1 parent df4a5cb commit 896d269
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/authentication/api/getCustomToken.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { default as ky } from 'ky-universal';

export const getCustomToken = async ({ id_token }: { id_token: string }) => {
const data = await ky
.post('auth/custom-token', {
.post('v0/auth/custom-token', {
json: { id_token },
prefixUrl: process.env.NEXT_PUBLIC_REST_API_BASE_URL,
})
Expand Down

0 comments on commit 896d269

Please sign in to comment.