Skip to content

Commit 9c83fa9

Browse files
committed
fix: 빌드에러 처리
1 parent 3116d07 commit 9c83fa9

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

src/components/ApiErrorBoundary.tsx

+1-8
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,5 @@ export default function ApiErrorBoundary({
5252
}
5353
}
5454

55-
return (
56-
<ErrorBoundary
57-
{...rest}
58-
onError={(error) => handleError(error as AxiosError)}
59-
fallbackRender={() => <NotFoundPage />}>
60-
{children}
61-
</ErrorBoundary>
62-
);
55+
return <>{children}</>;
6356
}

0 commit comments

Comments
 (0)