2
0
Yuki Takei 4 жил өмнө
parent
commit
f62111b8a4

+ 0 - 3
packages/app/src/utils/swr-utils.ts

@@ -1,9 +1,6 @@
 import { SWRConfiguration } from 'swr';
 
-import axios from './axios';
-
 export const swrGlobalConfiguration: SWRConfiguration = {
-  fetcher: url => axios.get(url).then(res => res.data),
   revalidateOnFocus: false,
   errorRetryCount: 1,
 };