diff --git a/src/components/ChoiceButtonDialog.vue b/src/components/ChoiceButtonDialog.vue index e21b705e..c9b95431 100644 --- a/src/components/ChoiceButtonDialog.vue +++ b/src/components/ChoiceButtonDialog.vue @@ -186,9 +186,15 @@ export default class PromptDialog extends Vue { this.onOption3 = options.onOption3; this.onCancel = options.onCancel; - this.notify.confirm( - this.text, - async () => {}, // No-op for onYes, handled by custom buttons + // Use customModal notification type instead of confirm + this.$notify( + { + group: "customModal", + type: "custom", + title: this.title, + text: this.text, + id: "choice-button-dialog", + }, TIMEOUTS.MODAL, ); }