From 8589f93d834d4488103af54f89913e9c7305b450 Mon Sep 17 00:00:00 2001 From: Simon Kelly Date: Mon, 13 May 2024 04:00:38 +0100 Subject: [PATCH] Fix infinite loop --- src/routes/twisty.lazy.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/routes/twisty.lazy.tsx b/src/routes/twisty.lazy.tsx index 14c5ec5..5b43a06 100644 --- a/src/routes/twisty.lazy.tsx +++ b/src/routes/twisty.lazy.tsx @@ -1,10 +1,11 @@ +import Twisty from '@/components/cubing/twisty'; import { createLazyFileRoute } from '@tanstack/react-router'; export const Route = createLazyFileRoute('/twisty')({ - component: Twisty, + component: TwistyExample, }); -function Twisty() { +function TwistyExample() { return (