From 9784de55164d0f89132cef4c872bded3c4e1dc21 Mon Sep 17 00:00:00 2001 From: liangping <18786721@qq.com> Date: Sat, 2 Dec 2023 08:29:02 +0800 Subject: [PATCH] add injective to featured --- src/pages/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/index.vue b/src/pages/index.vue index f07f715e..873e9ee3 100644 --- a/src/pages/index.vue +++ b/src/pages/index.vue @@ -23,7 +23,7 @@ const chains = computed(() => { }); const featured = computed(() => { - const names = ["cosmos", "osmosis", "akash", "celestia", "evmos"]; + const names = ["cosmos", "osmosis", "akash", "celestia", "evmos", "injective"]; return chains.value.filter(x => names.includes(x.chainName)) })