From 2b8ec1f6614fe1d9136956567fba05d75d1b7aaa Mon Sep 17 00:00:00 2001 From: Zack Spear Date: Wed, 21 Jun 2023 13:24:50 -0500 Subject: [PATCH] refactor: uptime expire to show expire for ENOCONN --- components/UserProfile/UptimeExpire.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/UserProfile/UptimeExpire.vue b/components/UserProfile/UptimeExpire.vue index 4385e9504..0d790fd8c 100644 --- a/components/UserProfile/UptimeExpire.vue +++ b/components/UserProfile/UptimeExpire.vue @@ -19,7 +19,7 @@ const formattedTime = computed(() => { return dateFormat((uptimeOrExpiredTime.value).toString()); }); -const countUp = computed(() => state.value !== 'TRIAL'); +const countUp = computed(() => state.value !== 'TRIAL' && state.value !== 'ENOCONN'); const output = computed(() => { if (!countUp.value) {