chore: remove unnecessary as const assertions

Signed-off-by: benjdlambert <ben@blam.sh>
This commit is contained in:
benjdlambert
2026-05-19 14:15:44 +02:00
parent 34e52d13e7
commit 3bf3c9d878
@@ -85,14 +85,14 @@ export const mcpServerApiEntityModel = createCatalogModelLayer({
selector: { path: 'spec.owner' },
relation: 'ownedBy',
defaultKind: 'Group',
defaultNamespace: 'inherit' as const,
defaultNamespace: 'inherit',
allowedKinds: ['Group', 'User'],
},
{
selector: { path: 'spec.system' },
relation: 'partOf',
defaultKind: 'System',
defaultNamespace: 'inherit' as const,
defaultNamespace: 'inherit',
},
],
schema: { jsonSchema: mcpServerSchema },