We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eefa819 commit 5d45de1Copy full SHA for 5d45de1
services/one-app/src/app/(site)/lost-found/[lostId]/edit/page.tsx
@@ -9,7 +9,10 @@ type Props = {
9
10
const LostFoundEditPage = ({ params: { lostId } }: Props) => {
11
return (
12
- <SuspenseQueryBoundary suspenseFallback={<div>loading</div>}>
+ <SuspenseQueryBoundary
13
+ errorFallback={<div>error</div>}
14
+ suspenseFallback={<div>loading</div>}
15
+ >
16
<LostFoundForm lostId={lostId} />
17
</SuspenseQueryBoundary>
18
);
0 commit comments