Skip to content

Commit 5d45de1

Browse files
committed
refactor: 누락된 errorFallback 추가 (#258)
1 parent eefa819 commit 5d45de1

File tree

1 file changed

+4
-1
lines changed
  • services/one-app/src/app/(site)/lost-found/[lostId]/edit

1 file changed

+4
-1
lines changed

services/one-app/src/app/(site)/lost-found/[lostId]/edit/page.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ type Props = {
99

1010
const LostFoundEditPage = ({ params: { lostId } }: Props) => {
1111
return (
12-
<SuspenseQueryBoundary suspenseFallback={<div>loading</div>}>
12+
<SuspenseQueryBoundary
13+
errorFallback={<div>error</div>}
14+
suspenseFallback={<div>loading</div>}
15+
>
1316
<LostFoundForm lostId={lostId} />
1417
</SuspenseQueryBoundary>
1518
);

0 commit comments

Comments
 (0)