diff --git a/src/app/[orgId]/settings/resources/ResourcesTable.tsx b/src/app/[orgId]/settings/resources/ResourcesTable.tsx
index 463c8461..fee92999 100644
--- a/src/app/[orgId]/settings/resources/ResourcesTable.tsx
+++ b/src/app/[orgId]/settings/resources/ResourcesTable.tsx
@@ -38,7 +38,7 @@ export type ResourceRow = {
domain: string;
site: string;
siteId: string;
- hasAuth: boolean;
+ authState: string;
http: boolean;
protocol: string;
proxyPort: number | null;
@@ -165,9 +165,7 @@ export default function SitesTable({ resources, orgId }: ResourcesTableProps) {
header: "Protocol",
cell: ({ row }) => {
const resourceRow = row.original;
- return (
- {resourceRow.protocol.toUpperCase()}
- );
+ return {resourceRow.protocol.toUpperCase()};
}
},
{
@@ -177,17 +175,23 @@ export default function SitesTable({ resources, orgId }: ResourcesTableProps) {
const resourceRow = row.original;
return (
- {!resourceRow.http ? (
-
- ) : (
-
- )}
+ {!resourceRow.http ? (
+
+ ) : (
+
+ )}
);
}
},
{
- accessorKey: "hasAuth",
+ accessorKey: "authState",
header: ({ column }) => {
return (