From 494345600bdba6b20cee096e832b4a1e55aba706 Mon Sep 17 00:00:00 2001 From: Jojo Ortiz Date: Fri, 1 Nov 2024 14:03:40 -0700 Subject: [PATCH] remove old playground path --- .../page.tsx | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 app/playground-3a284dca-393d-4d28-8a7a-bf202d475442/page.tsx diff --git a/app/playground-3a284dca-393d-4d28-8a7a-bf202d475442/page.tsx b/app/playground-3a284dca-393d-4d28-8a7a-bf202d475442/page.tsx deleted file mode 100644 index 9b25b659..00000000 --- a/app/playground-3a284dca-393d-4d28-8a7a-bf202d475442/page.tsx +++ /dev/null @@ -1,19 +0,0 @@ -'use client'; - -import { useRouter } from 'next/navigation'; -import { useEffect } from 'react'; - -export default function PlaygroundOld() { - const router = useRouter(); - - useEffect(() => { - router.replace('/sandbox'); - }, [router]); - - return ( -
-

{`🚛 We've moved the playground!`}

-

{`Redirecting...`}

-
- ); -}