Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Szegoo committed Oct 5, 2024
1 parent 2f8bdb2 commit f643ba4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/chaindata/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { NetworkType } from '@/models';

import KusamaChains from './kusama';
import leases from './leases.json';
import PolkadotChains from './polkadot';
import PaseoChains from './paseo';
import PolkadotChains from './polkadot';
import RococoChains from './rococo';
import { BaseChainInfo, ChainDetails } from './types';
import WestendChains from './westend';
Expand Down
1 change: 1 addition & 0 deletions src/chaindata/paseo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import {
nodesRexSVG,
nodesZeitgeistPNG,
} from '@/assets/logos';

import { ChainDetails } from './types';

const testParasPaseo: ChainDetails[] = [
Expand Down
2 changes: 1 addition & 1 deletion src/contexts/apis/CoretimeApi/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const CoretimeApiContextProvider = (props: any) => {
if (state.socket !== url) disconnect(state);

try {
connect(state, url, dispatch, true);
connect(state, url, dispatch, true, types);
} catch (_err) {
/** empty error handler */
}
Expand Down
2 changes: 1 addition & 1 deletion src/contexts/apis/RegionXApi/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ const RegionXApiContextProvider = (props: any) => {
if (state.socket !== url) disconnect(state);

try {
connect(state, url, dispatch, true);
connect(state, url, dispatch, true, types, customRpc);
} catch (_err) {
/** empty error handler */
}
Expand Down

0 comments on commit f643ba4

Please sign in to comment.