{t("protected")}
diff --git a/src/components/ResourcesTable.tsx b/src/components/ResourcesTable.tsx
index 0e613da8..252ac7d2 100644
--- a/src/components/ResourcesTable.tsx
+++ b/src/components/ResourcesTable.tsx
@@ -507,22 +507,6 @@ export default function ResourcesTable({
);
}
},
- {
- accessorKey: "nice",
- header: ({ column }) => {
- return (
-
- );
- }
- },
{
accessorKey: "protocol",
header: t("protocol"),
diff --git a/src/components/SiteInfoCard.tsx b/src/components/SiteInfoCard.tsx
index 5eed91c5..6d35e145 100644
--- a/src/components/SiteInfoCard.tsx
+++ b/src/components/SiteInfoCard.tsx
@@ -1,7 +1,6 @@
"use client";
import { Alert, AlertDescription, AlertTitle } from "@/components/ui/alert";
-import { InfoIcon } from "lucide-react";
import { useSiteContext } from "@app/hooks/useSiteContext";
import {
InfoSection,
@@ -12,9 +11,10 @@ import {
import { useTranslations } from "next-intl";
import { useEnvContext } from "@app/hooks/useEnvContext";
+
type SiteInfoCardProps = {};
-export default function SiteInfoCard({}: SiteInfoCardProps) {
+export default function SiteInfoCard({ }: SiteInfoCardProps) {
const { site, updateSite } = useSiteContext();
const t = useTranslations();
const { env } = useEnvContext();
@@ -31,10 +31,19 @@ export default function SiteInfoCard({}: SiteInfoCardProps) {
}
};
+
return (
-
+
+
+
+ {t("identifier")}
+
+
+ {site.niceId}
+
+
{(site.type == "newt" || site.type == "wireguard") && (
<>
diff --git a/src/components/SitesTable.tsx b/src/components/SitesTable.tsx
index 0f1b0536..0d8b161c 100644
--- a/src/components/SitesTable.tsx
+++ b/src/components/SitesTable.tsx
@@ -164,30 +164,6 @@ export default function SitesTable({ sites, orgId }: SitesTableProps) {
}
}
},
- {
- accessorKey: "nice",
- header: ({ column }) => {
- return (
-
- );
- },
- cell: ({ row }) => {
- return (
-
- {row.original.nice}
-
- );
- }
- },
{
accessorKey: "mbIn",
header: ({ column }) => {