Allow "local" sites witn no tunnel

This commit is contained in:
Owen Schwartz
2025-01-12 12:31:04 -05:00
parent bfd1b21f9c
commit 4c7581df4f
4 changed files with 182 additions and 77 deletions

View File

@@ -245,6 +245,14 @@ export default function SitesTable({ sites, orgId }: SitesTableProps) {
</div>
);
}
if (originalRow.type === "local") {
return (
<div className="flex items-center space-x-2">
<span>Local</span>
</div>
);
}
}
},
{