Fix fallback string
This commit is contained in:
parent
376d8fe16d
commit
e8088bc0d1
1 changed files with 1 additions and 1 deletions
|
|
@ -46,7 +46,7 @@ class Api {
|
|||
}
|
||||
|
||||
login(object: {}) {
|
||||
return axios.post(`${process.env.SIERO_OAUTH_URL}/token` || 'http://127.0.0.1:3000/oauth/token', object)
|
||||
return axios.post(`${ process.env.SIERO_OAUTH_URL || 'http://127.0.0.1:3000/oauth' }/token`, object)
|
||||
}
|
||||
|
||||
search(object: string, query: string) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue