From d9eb5d9715b4ba72e766f4117049a6adae2d7c17 Mon Sep 17 00:00:00 2001 From: Kurdistan Tech Ministry Date: Thu, 8 Jan 2026 10:38:03 +0300 Subject: [PATCH] fix: remove unnecessary type assertions and fix key ordering in index.ts --- packages/apps-config/src/api/spec/crust.ts | 2 +- packages/apps-config/src/api/spec/index.ts | 2 +- packages/apps-config/src/api/spec/laminar.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/apps-config/src/api/spec/crust.ts b/packages/apps-config/src/api/spec/crust.ts index 15669b8..632bb72 100644 --- a/packages/apps-config/src/api/spec/crust.ts +++ b/packages/apps-config/src/api/spec/crust.ts @@ -6,4 +6,4 @@ import type { OverrideBundleDefinition } from '@pezkuwi/types/types'; import { typesBundleForPezkuwi } from '@crustio/type-definitions'; // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access -export default (typesBundleForPezkuwi as Record>).spec.crust as unknown as OverrideBundleDefinition; +export default (typesBundleForPezkuwi as Record>).spec.crust as OverrideBundleDefinition; diff --git a/packages/apps-config/src/api/spec/index.ts b/packages/apps-config/src/api/spec/index.ts index d63a176..a82296f 100644 --- a/packages/apps-config/src/api/spec/index.ts +++ b/packages/apps-config/src/api/spec/index.ts @@ -296,8 +296,8 @@ const spec: Record = { spanner, stafi, standard, - steam: eave, 'bizinikiwi-contracts-node': bizinikiwiContractsNode, + steam: eave, subdao, subgame, subsocial: subsocial as OverrideBundleDefinition, diff --git a/packages/apps-config/src/api/spec/laminar.ts b/packages/apps-config/src/api/spec/laminar.ts index 2b75896..eb77e35 100644 --- a/packages/apps-config/src/api/spec/laminar.ts +++ b/packages/apps-config/src/api/spec/laminar.ts @@ -6,4 +6,4 @@ import type { OverrideBundleDefinition } from '@pezkuwi/types/types'; import { typesBundleForPezkuwi } from '@laminar/type-definitions'; // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access -export default (typesBundleForPezkuwi as Record>).spec.laminar as unknown as OverrideBundleDefinition; +export default (typesBundleForPezkuwi as Record>).spec.laminar as OverrideBundleDefinition;