Fix organization page display and IPv6 address handling. Improved IPv6 validation and updated display of unavailable addresses.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 9111ef36-26c8-4085-84ca-a35dc1fec1b5
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/7083d608-d6d3-4a6a-9a27-6286c5109627/1ce93fd3-3464-4f05-817e-542376e8c183.jpg
This commit is contained in:
alphaeusmote
2025-04-10 00:44:50 +00:00
parent d1683efc08
commit dd8c1361e6
3 changed files with 243 additions and 3 deletions
+2
View File
@@ -13,6 +13,7 @@ import ApiTokensPage from "@/pages/api-tokens";
import UsersRolesPage from "@/pages/users-roles";
import ProvidersPage from "@/pages/providers";
import SettingsPage from "@/pages/settings";
import OrganizationsPage from "@/pages/organizations";
import { AuthProvider } from "@/hooks/use-auth";
import { ProtectedRoute } from "@/lib/protected-route";
import { ThemeProvider } from "@/hooks/use-theme";
@@ -23,6 +24,7 @@ function Router() {
<Switch>
<Route path="/auth" component={AuthPage} />
<ProtectedRoute path="/" component={DashboardPage} />
<ProtectedRoute path="/organizations" component={OrganizationsPage} />
<ProtectedRoute path="/domains" component={DomainsPage} />
<ProtectedRoute path="/dns-records" component={DnsRecordsPage} />
<ProtectedRoute path="/metrics" component={MetricsPage} />