Skip to content

Commit

Permalink
fix build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
marc-aurele-besner committed Dec 13, 2024
1 parent 2f1a565 commit 172a9df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export const BalanceHistory: FC<Props> = ({ accountId }) => {
? sorting[0].id.endsWith('aggregate')
? { [sorting[0].id]: sorting[0].desc ? { count: OrderBy.Desc } : { count: OrderBy.Asc } }
: { [sorting[0].id]: sorting[0].desc ? OrderBy.Desc : OrderBy.Asc }
: { [TransferColumn.BlockHeight]: OrderBy.Asc },
: { id: OrderBy.Asc },
[sorting],
)

Expand Down
2 changes: 1 addition & 1 deletion explorer/src/constants/indexers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export interface Indexer {
telemetryNetworkName?: string
}

const LOCAL_INDEXER = 'https://subql.green.mainnet.subspace.network/v1/graphql'
const LOCAL_INDEXER = 'https://subql.blue.mainnet.subspace.network/v1/graphql'

export const indexers: Indexer[] = [
{
Expand Down

0 comments on commit 172a9df

Please sign in to comment.