diff --git a/src/components/ClientResourcesTable.tsx b/src/components/ClientResourcesTable.tsx index 4844d94f5..219ebd0dd 100644 --- a/src/components/ClientResourcesTable.tsx +++ b/src/components/ClientResourcesTable.tsx @@ -42,8 +42,8 @@ import { useState, useTransition } from "react"; -import CreateInternalResourceDialog from "@app/components/CreateInternalResourceDialog"; -import EditInternalResourceDialog from "@app/components/EditInternalResourceDialog"; +import CreatePrivateResourceDialog from "@app/components/CreateInternalResourceDialog"; +import EditPrivateResourceDialog from "@app/components/EditPrivateResourceDialog"; import type { PaginationState } from "@tanstack/react-table"; import { ControlledDataTable } from "./ui/controlled-data-table"; import { useNavigationContext } from "@app/hooks/useNavigationContext"; @@ -663,7 +663,7 @@ export default function ClientResourcesTable({ /> {editingResource && ( - )} - void; }; -export default function CreateInternalResourceDialog({ +export default function CreatePrivateResourceDialog({ open, setOpen, orgId, @@ -169,7 +169,7 @@ export default function CreateInternalResourceDialog({ - void; }; -export default function EditInternalResourceDialog({ +export default function EditPrivateResourceDialog({ open, setOpen, resource, @@ -188,7 +188,7 @@ export default function EditInternalResourceDialog({ - void; }; -export function InternalResourceForm({ +export function PrivateResourceForm({ variant, resource, open,