diff --git a/frontend/src/routes/_authenticated/wireless.tsx b/frontend/src/routes/_authenticated/wireless.tsx index f672a2f..6b8b88f 100644 --- a/frontend/src/routes/_authenticated/wireless.tsx +++ b/frontend/src/routes/_authenticated/wireless.tsx @@ -6,6 +6,7 @@ import { useAuth, isSuperAdmin } from '@/lib/auth' import { useUIStore } from '@/lib/store' import { Card, CardContent } from '@/components/ui/card' import { cn } from '@/lib/utils' +import { DeviceLink } from '@/components/ui/device-link' export const Route = createFileRoute('/_authenticated/wireless')({ component: WirelessPage, @@ -154,7 +155,11 @@ function WirelessPage() {
- {issue.hostname} + {tenantId && issue.device_id ? ( + + {issue.hostname} + + ) : issue.hostname}
{superAdmin && !tenantId && (