From 2e5d56941ca9ad2579abbb66e9bec6203ccc311d Mon Sep 17 00:00:00 2001 From: Dima Rifai <dima.rifai@gmail.com> Date: Mon, 6 Jan 2025 14:36:39 +0200 Subject: [PATCH] Issue #412 - Validate Account in route starts with @ --- pages/balanceHistory/[accountName].tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/balanceHistory/[accountName].tsx b/pages/balanceHistory/[accountName].tsx index 3950878a..d8b86759 100644 --- a/pages/balanceHistory/[accountName].tsx +++ b/pages/balanceHistory/[accountName].tsx @@ -178,7 +178,7 @@ export default function BalanceHistory() { ? 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) + if(routeAccountName && !routeAccountName.startsWith("@")) { return <ErrorPage />; } -- GitLab