fix: resolve remaining eslint errors (key ordering and unsafe member access)

This commit is contained in:
2026-01-08 10:27:55 +03:00
parent 55d7dcb23b
commit 7c1295d1d5
6 changed files with 12 additions and 10 deletions
@@ -51,6 +51,7 @@ export function getBalance (
instanceId,
(account: string): Observable<DeriveBalancesAll> =>
combineLatest<[any, any]>([api.query.tokens.accounts(account, 0), api.query.system.account(account)]).pipe(
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
map(([data, systemAccount]: [OrmlAccountData, FrameSystemAccountInfo]): DeriveBalancesAll => {
return {
...defaultAccountBalance(),
@@ -3,4 +3,5 @@
import { typesBundleForPezkuwi } from '@parallel-finance/type-definitions';
export default typesBundleForPezkuwi.spec.parallel;
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
export default (typesBundleForPezkuwi as Record<string, unknown>).spec;