Skip to content

Commit 1da723a

Browse files
authored
Title case (#15)
* Adding title case to the delete account section * removing ds store files
1 parent 3848c9b commit 1da723a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

resources/views/livewire/settings/delete-user-form.blade.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ public function deleteUser(Logout $logout): void
2424

2525
<section class="mt-10 space-y-6">
2626
<div class="relative mb-5">
27-
<flux:heading>{{ __('Delete Account') }}</flux:heading>
27+
<flux:heading>{{ __('Delete account') }}</flux:heading>
2828
<flux:subheading>{{ __('Delete your account and all of its resources') }}</flux:subheading>
2929
</div>
3030

3131
<flux:modal.trigger name="confirm-user-deletion">
3232
<flux:button variant="danger" x-data="" x-on:click.prevent="$dispatch('open-modal', 'confirm-user-deletion')">
33-
{{ __('Delete Account') }}
33+
{{ __('Delete account') }}
3434
</flux:button>
3535
</flux:modal.trigger>
3636

@@ -51,7 +51,7 @@ public function deleteUser(Logout $logout): void
5151
<flux:button variant="filled">{{ __('Cancel') }}</flux:button>
5252
</flux:modal.close>
5353

54-
<flux:button variant="danger" type="submit">{{ __('Delete Account') }}</flux:button>
54+
<flux:button variant="danger" type="submit">{{ __('Delete account') }}</flux:button>
5555
</div>
5656
</form>
5757
</flux:modal>

0 commit comments

Comments
 (0)