diff --git a/src/routes/Routes.tsx b/src/routes/Routes.tsx index c1e6b8b5090..b14a75befda 100644 --- a/src/routes/Routes.tsx +++ b/src/routes/Routes.tsx @@ -121,9 +121,12 @@ const Routes = () => { /> {/* If a reserved route has not been used by this point, redirect to NotFoundRoute */} - {[...RESERVED_ROUTES].map((route) => ( - } /> - ))} + {[...RESERVED_ROUTES] + // Allow in use colony names + .filter((route) => !['/meta', '/beta'].includes(route)) + .map((route) => ( + } /> + ))} {/* Colony routes */} }>