From 845dee2aba79f3a0ca4def33e4d7c7722bf99faf Mon Sep 17 00:00:00 2001 From: Otfrugger <296287929+Otfrugger@users.noreply.github.com> Date: Fri, 28 Aug 2026 19:14:00 +0100 Subject: [PATCH] fix(web): remove nested from the receipt not-found branch MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit apps/web/app/r/[reference]/page.tsx's catch branch returned its own wrapper from inside the root layout, which already supplies both — invalid nested-document markup, causing hydration warnings. Every other not-found branch in the app (e.g. apps/web/app/pay/[id]/page.tsx) returns a bare
fragment; this one now matches. Checked the rest of apps/web/app for the same shape (grep -rn ' - -
-
-

Receipt not found

-

No payment found for this reference. The link may still be awaiting payment, or the reference is incorrect.

-
-
- - +
+
+

Receipt not found

+

No payment found for this reference. The link may still be awaiting payment, or the reference is incorrect.

+
+
); }