From a5c58b5a3518bae73dd3a8b6fdea0d71696a9082 Mon Sep 17 00:00:00 2001 From: Carlo Sala Date: Wed, 21 Aug 2024 12:01:04 +0200 Subject: [PATCH] last fixes --- src/App.tsx | 2 +- src/actions/delegate/utils.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 22c14b4..bfb8222 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -37,7 +37,7 @@ const LandingPage = () => ( : Action to send tokens to a predefined address.
  • - + Delegate : Action to set up vote delegation. diff --git a/src/actions/delegate/utils.ts b/src/actions/delegate/utils.ts index 05e542e..ecd9cda 100644 --- a/src/actions/delegate/utils.ts +++ b/src/actions/delegate/utils.ts @@ -1,6 +1,6 @@ import { getSs58AddressInfo } from "polkadot-api" -export const SUPPORTED_CHAINS = ["polkadot", "kusama"] +export const SUPPORTED_CHAINS = ["polkadot"] export const isChainValid = (chain: string) => SUPPORTED_CHAINS.includes(chain)