From 6f41c24ebdff055cae98ba9535bcbacddc17799f Mon Sep 17 00:00:00 2001 From: austinkelsay Date: Sat, 12 Oct 2024 14:03:07 -0500 Subject: [PATCH] Copy fix and timeot change --- src/components/banner/HeroBanner.js | 4 ++-- src/hooks/nostrQueries/zaps/useZapsSubscription.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/banner/HeroBanner.js b/src/components/banner/HeroBanner.js index 1730d48..fcee226 100644 --- a/src/components/banner/HeroBanner.js +++ b/src/components/banner/HeroBanner.js @@ -90,11 +90,11 @@ const HeroBanner = () => { {isMobile ? (

- A one of a kind developer education and community platform built on Nostr and fully Lightning integrated. + A one of a kind developer education, content, and community platform built on Nostr and fully Lightning integrated.

) : (

- A one of a kind developer education and community platform built on Nostr and fully Lightning integrated. + A one of a kind developer education, content, and community platform built on Nostr and fully Lightning integrated.

)}
diff --git a/src/hooks/nostrQueries/zaps/useZapsSubscription.js b/src/hooks/nostrQueries/zaps/useZapsSubscription.js index f273d55..6f94714 100644 --- a/src/hooks/nostrQueries/zaps/useZapsSubscription.js +++ b/src/hooks/nostrQueries/zaps/useZapsSubscription.js @@ -57,7 +57,7 @@ export function useZapsSubscription({ event }) { // Set a 4-second timeout to stop loading state if no zaps are received timeoutId = setTimeout(() => { setZapsLoading(false); - }, 4000); + }, 3000); } catch (error) { console.error("Error subscribing to zaps:", error);