Skip to content

Commit ccb8d40

Browse files
committed
run fmt
1 parent 0bdba15 commit ccb8d40

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

frontend/src/services/api/index.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,10 @@ api.interceptors.response.use(
8181
const currentRoute = router.currentRoute.value.name?.toString() ?? "";
8282
const resolvedRoute = router.resolve(window.location.pathname);
8383
const resolvedRouteName = resolvedRoute.name?.toString() ?? "";
84-
if (isAuthExemptRoute(currentRoute) || isAuthExemptRoute(resolvedRouteName)) {
84+
if (
85+
isAuthExemptRoute(currentRoute) ||
86+
isAuthExemptRoute(resolvedRouteName)
87+
) {
8588
return Promise.reject(error);
8689
}
8790

0 commit comments

Comments
 (0)