Explorar el Código

fix(server): cancel error (#3332)

Jason Rasmussen hace 2 años
padre
commit
6e953ff5eb
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      web/src/lib/utils/handle-error.ts

+ 2 - 2
web/src/lib/utils/handle-error.ts

@@ -1,5 +1,5 @@
 import type { ApiError } from '@api';
-import { CanceledError } from 'axios';
+import * as axios from 'axios';
 import { notificationController, NotificationType } from '../components/shared-components/notification/notification';
 
 export async function getServerErrorMessage(error: unknown) {
@@ -17,7 +17,7 @@ export async function getServerErrorMessage(error: unknown) {
 }
 
 export async function handleError(error: unknown, message: string) {
-  if (error instanceof CanceledError) {
+  if (error instanceof axios.CanceledError) {
     return;
   }