diff --git a/pages/[accountName].tsx b/pages/[accountName].tsx
index b005d128f87c5a183d9ef5ed6c1481eb20f58317..bd665412842fb9fa6fbe4c1bcba8fd859849c1bb 100644
--- a/pages/[accountName].tsx
+++ b/pages/[accountName].tsx
@@ -283,10 +283,11 @@ export default function Account() {
     ? 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 />;
   }
+  
   if (!accountDetails) {
     return (
       <Loader2 className="animate-spin mt-1 text-black dark:text-white h-12 w-12 ml-3 ..." />