Remove useless suspense

Signed-off-by: Bryan Frimin <bryan@getprobo.com>
This commit is contained in:
Bryan Frimin
2026-02-20 14:25:40 +01:00
parent d62010c14e
commit ac7fdd2566

View File

@@ -18,11 +18,7 @@ function NDAPageQueryLoader() {
if (!queryRef) return null;
return (
<Suspense>
<NDAPage queryRef={queryRef} />
</Suspense>
);
return <NDAPage queryRef={queryRef} />;
}
export default function NDAPageLoader() {