From 32c2eb14889a0167d8ab52bd770b1dbdbd969bbb Mon Sep 17 00:00:00 2001 From: abefernan <44572727+abefernan@users.noreply.github.com> Date: Fri, 5 Apr 2024 19:46:27 +0200 Subject: [PATCH] Name home page --- pages/[chainName]/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/[chainName]/index.tsx b/pages/[chainName]/index.tsx index 843bdb2..60269e3 100644 --- a/pages/[chainName]/index.tsx +++ b/pages/[chainName]/index.tsx @@ -2,7 +2,7 @@ import FindMultisigForm from "@/components/forms/FindMultisigForm"; import Head from "@/components/head"; import { useChains } from "@/context/ChainsContext"; -const MultiPage = () => { +const FindMultisigPage = () => { const { chain } = useChains(); return ( @@ -13,4 +13,4 @@ const MultiPage = () => { ); }; -export default MultiPage; +export default FindMultisigPage;