mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-16 20:22:15 +01:00
add format check, update prettier rules, apply rules consistently
This commit is contained in:
@@ -45,15 +45,13 @@ const closeModal = () => {
|
||||
|
||||
<template #content>
|
||||
<div class="max-w-xl text-sm text-text-secondary">
|
||||
Once your account is deleted, all of its resources and data will
|
||||
be permanently deleted. Before deleting your account, please
|
||||
download any data or information that you wish to retain.
|
||||
Once your account is deleted, all of its resources and data will be permanently
|
||||
deleted. Before deleting your account, please download any data or information that
|
||||
you wish to retain.
|
||||
</div>
|
||||
|
||||
<div class="mt-5">
|
||||
<DangerButton @click="confirmUserDeletion">
|
||||
Delete Account
|
||||
</DangerButton>
|
||||
<DangerButton @click="confirmUserDeletion"> Delete Account </DangerButton>
|
||||
</div>
|
||||
|
||||
<!-- Delete Account Confirmation Modal -->
|
||||
@@ -61,10 +59,9 @@ const closeModal = () => {
|
||||
<template #title> Delete Account </template>
|
||||
|
||||
<template #content>
|
||||
Are you sure you want to delete your account? Once your
|
||||
account is deleted, all of its resources and data will be
|
||||
permanently deleted. Please enter your password to confirm
|
||||
you would like to permanently delete your account.
|
||||
Are you sure you want to delete your account? Once your account is deleted, all
|
||||
of its resources and data will be permanently deleted. Please enter your
|
||||
password to confirm you would like to permanently delete your account.
|
||||
|
||||
<div class="mt-4">
|
||||
<TextInput
|
||||
@@ -76,16 +73,12 @@ const closeModal = () => {
|
||||
autocomplete="current-password"
|
||||
@keyup.enter="deleteUser" />
|
||||
|
||||
<InputError
|
||||
:message="form.errors.password"
|
||||
class="mt-2" />
|
||||
<InputError :message="form.errors.password" class="mt-2" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<template #footer>
|
||||
<SecondaryButton @click="closeModal">
|
||||
Cancel
|
||||
</SecondaryButton>
|
||||
<SecondaryButton @click="closeModal"> Cancel </SecondaryButton>
|
||||
|
||||
<DangerButton
|
||||
class="ms-3"
|
||||
|
||||
Reference in New Issue
Block a user