Browse Source

remove debugger

Signed-off-by: shanghaikid <jiangruiyi@gmail.com>
shanghaikid 2 years ago
parent
commit
dc1e4ee192
1 changed files with 0 additions and 2 deletions
  1. 0 2
      client/src/components/layout/GlobalEffect.tsx

+ 0 - 2
client/src/components/layout/GlobalEffect.tsx

@@ -16,8 +16,6 @@ const GlobalEffect = (props: { children: React.ReactNode }) => {
   if (axiosResInterceptor === null) {
     axiosResInterceptor = axiosInstance.interceptors.response.use(
       function (res: any) {
-        debugger;
-
         if (res.statusCode && res.statusCode !== HTTP_STATUS_CODE.OK) {
           openSnackBar(res.data.message, 'warning');
           return Promise.reject(res.data);