diff --git a/frontend/src/components/NewSubscription.js b/frontend/src/components/NewSubscription.js index e921e773..c4bd077d 100644 --- a/frontend/src/components/NewSubscription.js +++ b/frontend/src/components/NewSubscription.js @@ -73,11 +73,11 @@ const _NewSubscription = ({ (props) => { props.label = "Address"; if ( - subscriptionAdressFormatRadio.startsWith("tags") && + subscriptionAdressFormatRadio.startsWith("tag") && radioState != "ethereum_whalewatch" ) { props.address = subscriptionAdressFormatRadio; - props.label = "tags: NFTs"; + props.label = "Tag"; } createSubscription.mutate({ @@ -165,7 +165,6 @@ const _NewSubscription = ({ (addition_selects) => { const radio = getRadioPropsSubscription({ value: addition_selects, - isDisabled: addition_selects.startsWith("tag"), }); return ( { const { subscriptionsCache, @@ -94,7 +99,11 @@ const SubscriptionsList = ({ emptyCTA }) => { - {subscription.address} + {subscription.address?.startsWith("tag") ? ( + {mapper[subscription.address]} + ) : ( + {subscription.address} + )}