From d6882f7bdb6e3e9b79fad7f78f3e434ca54161b1 Mon Sep 17 00:00:00 2001 From: Philipp Schoenbach Date: Mon, 9 Feb 2026 15:07:49 +0100 Subject: [PATCH 1/2] changed null check --- src/components/FloatingLines.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/FloatingLines.tsx b/src/components/FloatingLines.tsx index b1703e3..3500f9e 100644 --- a/src/components/FloatingLines.tsx +++ b/src/components/FloatingLines.tsx @@ -403,7 +403,8 @@ export default function FloatingLines({ const clock = new Clock() const setSize = () => { - const el = containerRef.current! + const el = containerRef.current + if (!el) return const width = el.clientWidth || 1 const height = el.clientHeight || 1 From b3c9173c23b651820f9ea642c51f527a03cbeb20 Mon Sep 17 00:00:00 2001 From: Philipp Schoenbach Date: Tue, 10 Feb 2026 17:25:41 +0100 Subject: [PATCH 2/2] fix spelling landing page --- src/components/top-level-pages/call-to-action.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/top-level-pages/call-to-action.tsx b/src/components/top-level-pages/call-to-action.tsx index 61ee655..922be29 100644 --- a/src/components/top-level-pages/call-to-action.tsx +++ b/src/components/top-level-pages/call-to-action.tsx @@ -12,7 +12,7 @@ export function CallToAction() {

Ready to dive in?
- Become an beta tester today. + Become a beta tester today.