add format check, update prettier rules, apply rules consistently

This commit is contained in:
Gregor Vostrak
2025-07-29 18:58:31 +02:00
parent b11672732b
commit a3d7cdaf4d
323 changed files with 3728 additions and 5579 deletions

View File

@@ -26,34 +26,23 @@
<div class="max-w-sm text-center mx-auto py-4 text-base">
<p class="py-1">
Your organization is currently
<strong class="font-semibold"
>blocked from performing this action</strong
>
<strong class="font-semibold">blocked from performing this action</strong>
</p>
<p class="py-1">
To unblock your organization, please
<strong class="font-semibold">
upgrade to a premium plan</strong
>
<strong class="font-semibold"> upgrade to a premium plan</strong>
or remove all users except the owner.
</p>
<Link
v-if="isBillingActivated() && canManageBilling()"
href="/billing">
<PrimaryButton
:icon="CreditCardIcon"
type="button"
class="mt-6">
<Link v-if="isBillingActivated() && canManageBilling()" href="/billing">
<PrimaryButton :icon="CreditCardIcon" type="button" class="mt-6">
Go to Billing
</PrimaryButton>
</Link>
</div>
</template>
<template #footer>
<SecondaryButton @click="showActionBlockedModal = false">
Cancel</SecondaryButton
>
<SecondaryButton @click="showActionBlockedModal = false"> Cancel</SecondaryButton>
</template>
</DialogModal>
</template>
@@ -70,7 +59,5 @@ import { Link } from '@inertiajs/vue3';
import PrimaryButton from '../packages/ui/src/Buttons/PrimaryButton.vue';
import SecondaryButton from '../packages/ui/src/Buttons/SecondaryButton.vue';
const { notifications, showActionBlockedModal } = storeToRefs(
useNotificationsStore()
);
const { notifications, showActionBlockedModal } = storeToRefs(useNotificationsStore());
</script>