Skip to content

Commit

Permalink
fix: compare local network names in the same case
Browse files Browse the repository at this point in the history
  • Loading branch information
mat-sz committed Jun 7, 2024
1 parent 390f723 commit 3a763d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/stores/NetworkStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export class NetworkStore {

get otherNetworks() {
return this.localNetworks.filter(
network => network.name !== this.networkName
network => network.name.toUpperCase() !== this.networkName?.toUpperCase()
);
}

Expand Down

0 comments on commit 3a763d3

Please sign in to comment.