refactor: registration component remove contact support

This commit is contained in:
Zack Spear
2024-08-13 11:04:54 -07:00
committed by GitHub
parent f530d9ea82
commit bc61b45f9f
+1 -10
View File
@@ -6,7 +6,7 @@ import {
import { storeToRefs } from 'pinia';
import type { ComposerTranslation } from 'vue-i18n';
import { DOCS_REGISTRATION_REPLACE_KEY, UNRAID_NET_SUPPORT } from '~/helpers/urls';
import { DOCS_REGISTRATION_REPLACE_KEY } from '~/helpers/urls';
import { useReplaceRenewStore } from '~/store/replaceRenew';
const replaceRenewStore = useReplaceRenewStore();
@@ -45,15 +45,6 @@ defineProps<{
:text="t('Learn More')"
class="text-14px"
/>
<BrandButton
v-if="replaceStatusOutput?.text !== 'eligible' && replaceStatusOutput?.text !== 'checking'"
btn-style="underline"
:external="true"
:href="UNRAID_NET_SUPPORT.toString()"
:icon-right="ArrowTopRightOnSquareIcon"
:text="t('Contact Support')"
class="text-14px"
/>
</span>
</div>
</template>