From 0ef584fdc27e1fcdc71125a71820c615354b0f3e Mon Sep 17 00:00:00 2001 From: dal Date: Thu, 10 Jul 2025 08:01:49 -0600 Subject: [PATCH] removed the none field since it doesn't exist. --- apps/web/src/api/asset_interfaces/organizations/interfaces.ts | 1 - apps/web/src/controllers/HomePage/NewChatWarning.stories.tsx | 1 - apps/web/src/lib/organization/translations.ts | 1 - 3 files changed, 3 deletions(-) diff --git a/apps/web/src/api/asset_interfaces/organizations/interfaces.ts b/apps/web/src/api/asset_interfaces/organizations/interfaces.ts index db6d69957..bb2c45314 100644 --- a/apps/web/src/api/asset_interfaces/organizations/interfaces.ts +++ b/apps/web/src/api/asset_interfaces/organizations/interfaces.ts @@ -6,5 +6,4 @@ export const BusterOrganizationRoleLabels: Record = { querier: 'Querier', restricted_querier: 'Restricted Querier', viewer: 'Viewer', - none: 'None' }; diff --git a/apps/web/src/controllers/HomePage/NewChatWarning.stories.tsx b/apps/web/src/controllers/HomePage/NewChatWarning.stories.tsx index 022a56415..a50c44ccf 100644 --- a/apps/web/src/controllers/HomePage/NewChatWarning.stories.tsx +++ b/apps/web/src/controllers/HomePage/NewChatWarning.stories.tsx @@ -9,7 +9,6 @@ const OrganizationRoleSchema: Record = { querier: 'querier', restricted_querier: 'restricted_querier', viewer: 'viewer', - none: 'none' }; const meta: Meta = { diff --git a/apps/web/src/lib/organization/translations.ts b/apps/web/src/lib/organization/translations.ts index 20196e1a4..0a2dd79d9 100644 --- a/apps/web/src/lib/organization/translations.ts +++ b/apps/web/src/lib/organization/translations.ts @@ -6,5 +6,4 @@ export const OrganizationUserRoleText: Record = { querier: 'Querier', restricted_querier: 'Restricted Querier', viewer: 'Viewer', - none: 'None' };