From 71093d4b8726784f761590e35080eb80325d1710 Mon Sep 17 00:00:00 2001 From: William Chong Date: Sat, 24 Jun 2023 15:13:52 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Re-enable=20stripe?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/EventModal/Collect/index.vue | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/components/EventModal/Collect/index.vue b/src/components/EventModal/Collect/index.vue index 07e17ca88..8ee52d5a5 100644 --- a/src/components/EventModal/Collect/index.vue +++ b/src/components/EventModal/Collect/index.vue @@ -261,8 +261,6 @@ import { formatNumberWithLIKE, oscillate } from '~/util/ui'; import clipboardMixin from '~/mixins/clipboard'; import nftMixin from '~/mixins/nft'; -import { IS_TESTNET } from '~/constant'; - const FOLLOW_PROMPT_STATE = { DEFAULT: 'default', // No need to show any follow UI. UNFOLLOW: 'unfollow', // Show a switch button to toggle follow status. @@ -329,7 +327,7 @@ export default { 'walletInteractedCreators', ]), enableStripe() { - return !!IS_TESTNET; + return true; }, developerMode() { return !!this.$route.query.debug;