From 0031f69bc9e0b53cba75e7f2188c096de1aeb547 Mon Sep 17 00:00:00 2001 From: Dima Rifai <dima.rifai@gmail.com> Date: Mon, 6 Jan 2025 13:26:46 +0200 Subject: [PATCH] Issue #412 - Validate Account in route starts with @ and is not empty --- pages/[accountName].tsx | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/pages/[accountName].tsx b/pages/[accountName].tsx index 479522c3..b005d128 100644 --- a/pages/[accountName].tsx +++ b/pages/[accountName].tsx @@ -24,7 +24,7 @@ import { Button } from "@/components/ui/button"; import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; import useConvertedAccountDetails from "@/hooks/common/useConvertedAccountDetails"; import useDynamicGlobal from "@/hooks/api/homePage/useDynamicGlobal"; - +import ErrorPage from "./ErrorPage"; interface AccountSearchParams { accountName?: string | undefined; fromBlock: number | undefined; @@ -98,6 +98,7 @@ export default function Account() { liveDataEnabled, dynamicGlobalData ); + const accountOperationsProps = { accountName: accountNameFromRoute, operationTypes: filtersParam.length @@ -277,6 +278,15 @@ export default function Account() { } }; + // get the accountName and treat it as a string + const routeAccountName = Array.isArray(router.query.accountName) + ? router.query.accountName[0] // If it's an array, get the first element + : router.query.accountName; // Otherwise, treat it as a string directly + + if(routeAccountName && !routeAccountName.startsWith("@") || !accountNameFromRoute) + { + return <ErrorPage />; + } if (!accountDetails) { return ( <Loader2 className="animate-spin mt-1 text-black dark:text-white h-12 w-12 ml-3 ..." /> -- GitLab