Skip to content

Commit

Permalink
Merge pull request #6 from rohit-zip/main
Browse files Browse the repository at this point in the history
bugFix/implicit-parameter
  • Loading branch information
rohit-zip authored Jun 14, 2024
2 parents 12934f8 + 8a6ccb4 commit 9e1b4f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rest/AuthProviderApplication.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export const refreshTokenSocial = (token: string) => {
}).then((response)=> response.data);
}

export const loginGoogle = (tokenResponse) => {
export const loginGoogle = (tokenResponse: any) => {
return gatewayAxios.post(GOOGLE_LOGIN, tokenResponse)
.then((response)=> response);
}

0 comments on commit 9e1b4f4

Please sign in to comment.