From dc69504e083b9625918c4e468d2bfeb47278ee02 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Thu, 21 Jul 2022 00:01:24 +0200 Subject: [PATCH] Rename page to PageDebugLoading --- pages/debug/loading.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/debug/loading.tsx b/pages/debug/loading.tsx index aa26f8a..05d3074 100644 --- a/pages/debug/loading.tsx +++ b/pages/debug/loading.tsx @@ -17,7 +17,7 @@ export async function getStaticProps(context: NextPageContext) { } -const Page500: NextPage = (props) => { +const PageDebugLoading: NextPage = (props) => { const { t } = useTranslation() return <> @@ -33,4 +33,4 @@ const Page500: NextPage = (props) => { } -export default Page500 +export default PageDebugLoading