proxy: fix routes portal error message (#5476)

This commit is contained in:
Caleb Doxsey 2025-02-06 14:43:10 -07:00 committed by GitHub
parent c8323ba744
commit 229ef72e58
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -125,7 +125,7 @@ const RoutesPage: FC<RoutesPageProps> = ({ data }) => {
return ( return (
<SidebarPage> <SidebarPage>
<Stack spacing={2}> <Stack spacing={2}>
{data?.routes ? ( {data?.routes?.length > 0 ? (
<> <>
<RoutesSection <RoutesSection
type={"http"} type={"http"}