Skip to content

Commit 8c7c972

Browse files
committed
feat: Update API endpoint for OAuth link retrieval
1 parent 1d7de16 commit 8c7c972

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/features/auth/api/getOauthLink.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export type GetOauthLinkDTO = {
99
}
1010
}
1111
const getOauthLink = ({ data }: GetOauthLinkDTO): Promise<{ authLink: string }> => {
12-
return axios.post('/engine/auth/auth_link', data)
12+
return axios.post('/engine/auth/oauth-link', data)
1313
}
1414

1515
type QueryFnType = typeof getOauthLink

0 commit comments

Comments
 (0)