From a32f44a62c44831c55850d97b9ecb4208a0f26a7 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Thu, 16 Oct 2025 13:47:00 +0200 Subject: [PATCH] :bug: Use correct error boundary fallback on ui ns --- frontend/src/app/main/ui.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/main/ui.cljs b/frontend/src/app/main/ui.cljs index f9f27e3f05..16a882f518 100644 --- a/frontend/src/app/main/ui.cljs +++ b/frontend/src/app/main/ui.cljs @@ -369,7 +369,7 @@ [:& (mf/provider ctx/current-profile) {:value profile} (if edata [:> static/exception-page* {:data edata :route route}] - [:> error-boundary* {:fallback static/internal-error*} + [:> error-boundary* {:fallback static/exception-page*} [:> notifications/current-notification*] (when route [:> page* {:route route :profile profile}])])]]))