This commit is contained in:
Elijah Lucian
2021-07-15 15:13:43 -06:00
parent f0f4494553
commit 83fdd5b79a
5 changed files with 13 additions and 11 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ export const AppContextProvider = ({ children, baseURL }: Props) => {
const api = axios.create({ baseURL })
api.interceptors.request.use((config) => {
config.url += '?format=json'
// config.url += '?format=json'
return config
})