Skip to content

Commit

Permalink
another fix
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Sep 8, 2020
1 parent 54a3db6 commit 47ad018
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions stubs/inertia/resources/js/Pages/Profile/DeleteUserForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
</div>

<!-- Delete Account Confirmation Modal -->
<jet-confirmation-modal :show="confirmingUserDeletion" @close="confirmingUserDeletion = false">
<jet-dialog-modal :show="confirmingUserDeletion" @close="confirmingUserDeletion = false">
<template #title>
Delete Account
</template>
Expand All @@ -47,15 +47,15 @@
Delete Account
</jet-danger-button>
</template>
</jet-confirmation-modal>
</jet-dialog-modal>
</template>
</jet-action-section>
</template>

<script>
import JetActionSection from './../../Jetstream/ActionSection'
import JetButton from './../../Jetstream/Button'
import JetConfirmationModal from './../../Jetstream/ConfirmationModal'
import JetDialogModal from './../../Jetstream/DialogModal'
import JetDangerButton from './../../Jetstream/DangerButton'
import JetInput from './../../Jetstream/Input'
import JetInputError from './../../Jetstream/InputError'
Expand All @@ -65,8 +65,8 @@
components: {
JetActionSection,
JetButton,
JetConfirmationModal,
JetDangerButton,
JetDialogModal,
JetInput,
JetInputError,
JetSecondaryButton,
Expand Down

0 comments on commit 47ad018

Please sign in to comment.