fix: Remove unnecessary baseurl appending, Correction in refresh token api

re #428

Signed-off-by: Pranav C <61551451+pranavxc@users.noreply.github.com>
This commit is contained in:
Pranav C
2021-08-05 18:30:10 +05:30
parent 40494fc3e9
commit 83db607c31
7 changed files with 8 additions and 8 deletions

View File

@@ -31,7 +31,7 @@ export default class GqlApi {
post(url, params) {
return this.$axios({
url: `${this.$axios.defaults.baseURL}${url}`,
url: `${url}`,
method: 'post',
data: params
})