mirror of
https://github.com/unraid/api.git
synced 2026-01-03 23:19:54 -06:00
chore: promo comment out reorg
This commit is contained in:
@@ -6,20 +6,20 @@ import 'tailwindcss/tailwind.css';
|
||||
import '~/assets/main.css';
|
||||
|
||||
import { useCallbackActionsStore } from '~/store/callbackActions';
|
||||
// import { usePromoStore } from '~/store/promo';
|
||||
import { useTrialStore } from '~/store/trial';
|
||||
|
||||
const { t } = useI18n();
|
||||
|
||||
const { callbackStatus } = storeToRefs(useCallbackActionsStore());
|
||||
// const { promoVisible } = storeToRefs(usePromoStore());
|
||||
const { trialModalVisible } = storeToRefs(useTrialStore());
|
||||
// import { usePromoStore } from '~/store/promo';
|
||||
// const { promoVisible } = storeToRefs(usePromoStore());
|
||||
// <UpcPromo :t="t" :open="promoVisible" />
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="relative z-[99999]">
|
||||
<UpcCallbackFeedback :t="t" :open="callbackStatus !== 'ready'" />
|
||||
<!-- <UpcPromo :t="t" :open="promoVisible" /> -->
|
||||
<UpcTrial :t="t" :open="trialModalVisible" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user