From 4b2b6f9089a273a4a47ec0e451571d6a51b43cc5 Mon Sep 17 00:00:00 2001 From: Silberengel Date: Mon, 16 Mar 2026 19:19:23 +0100 Subject: [PATCH] bug-fixes --- src/components/Explore/index.tsx | 28 +++++++++++++----------- src/components/RelaySimpleInfo/index.tsx | 4 ++-- src/layouts/PrimaryPageLayout/index.tsx | 1 + src/lib/error-suppression.ts | 14 ++++++++++-- 4 files changed, 30 insertions(+), 17 deletions(-) diff --git a/src/components/Explore/index.tsx b/src/components/Explore/index.tsx index c4ae82f2..dae3f51c 100644 --- a/src/components/Explore/index.tsx +++ b/src/components/Explore/index.tsx @@ -30,7 +30,7 @@ export default function Explore() { } return ( -
+
{collections.map((collection) => ( ))} @@ -41,16 +41,16 @@ export default function Explore() { function RelayCollection({ collection }: { collection: TAwesomeRelayCollection }) { const { deepBrowsing } = useDeepBrowsing() return ( -
+
{collection.name}
-
+
{collection.relays.map((url) => ( ))} @@ -72,14 +72,16 @@ function RelayItem({ url }: { url: string }) { } return ( - { - e.stopPropagation() - navigateToRelay(toRelay(relayInfo.url)) - }} - /> +
+ { + e.stopPropagation() + navigateToRelay(toRelay(relayInfo.url)) + }} + /> +
) } diff --git a/src/components/RelaySimpleInfo/index.tsx b/src/components/RelaySimpleInfo/index.tsx index 40d3dd87..8dadca30 100644 --- a/src/components/RelaySimpleInfo/index.tsx +++ b/src/components/RelaySimpleInfo/index.tsx @@ -19,8 +19,8 @@ export default function RelaySimpleInfo({ const { t } = useTranslation() return ( -
-
+
+
diff --git a/src/layouts/PrimaryPageLayout/index.tsx b/src/layouts/PrimaryPageLayout/index.tsx index 7f63dad8..55c5e9cc 100644 --- a/src/layouts/PrimaryPageLayout/index.tsx +++ b/src/layouts/PrimaryPageLayout/index.tsx @@ -72,6 +72,7 @@ const PrimaryPageLayout = forwardRef(