Skip to content

Commit d308c23

Browse files
authored
FIX: ssv explorer operator url (#2283)
1 parent 0817ff9 commit d308c23

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

launcher/src/components/UI/services-modal/SsvModal.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -610,8 +610,7 @@ export default {
610610
if (!network) {
611611
throw new Error("openOperatorPage -> Network unknown");
612612
}
613-
let net = network == "mainnet" ? "" : network + ".";
614-
let url = `https://${net}explorer.ssv.network/operators/${operatorID}`;
613+
let url = `https://explorer.ssv.network/${network}/operator/${operatorID}`;
615614
window.open(url, "_blank");
616615
},
617616
openRegisterPage(network) {

0 commit comments

Comments
 (0)