Specify the client in the GET ott request
This commit is contained in:
parent
cfbb32702c
commit
0c6acba5db
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@ import { getEndpoint } from 'utils/common/apiUtil';
|
|||
const ENDPOINT = getEndpoint();
|
||||
|
||||
export const getOtt = (email: string) => {
|
||||
return HTTPService.get(`${ENDPOINT}/users/ott`, { email })
|
||||
return HTTPService.get(`${ENDPOINT}/users/ott`, { 'email': email, 'client': 'web' })
|
||||
}
|
||||
|
||||
export const verifyOtt = (email: string, ott: string) => {
|
||||
|
|
Loading…
Add table
Reference in a new issue