fix .env.production

This commit is contained in:
xds
2025-11-01 01:16:05 +03:00
parent e49ce78518
commit 3ab59f0112
2 changed files with 2 additions and 2 deletions

View File

@@ -98,7 +98,7 @@ onMounted(async () => {
</div>
<i class="pi pi-angle-right !font-extralight"/>
</div>
<Divider v-if="key+1 !== categories.length" class="!m-0 !py-3"/>
<Divider v-if="key+1 !== categories.filter(i => i.type == CategoryType.EXPENSE).length" class="!m-0 !py-3"/>
</div>
</div>
</div>

View File

@@ -249,7 +249,7 @@ onMounted(async () => {
<div v-if="isCategorySelectorOpened" class="fixed inset-0 z-50 flex items-start justify-center p-4 overflow-y-auto"
style="background-color: var(--primary-color); "
:style="tgApp ? `padding-top: ${insetTop}px !important` : 'padding-top: 2rem !important'">
<div class="flex w-full max-w-md">
<div class="flex w-full max-w-md !pb-24">
<div class="flex card justify-items-start justify-start">
<div v-for="(cat, idx) in categories" :key="cat.id"