Skip to content

Commit 5b58f74

Browse files
fix(desktop): default confirm dialog selection to "No" (pingdotgg#1400)
Co-authored-by: Julius Marminge <julius0216@outlook.com>
1 parent 32dca3b commit 5b58f74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/desktop/src/confirmDialog.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export async function showDesktopConfirmDialog(
1414
const options = {
1515
type: "question" as const,
1616
buttons: ["No", "Yes"],
17-
defaultId: CONFIRM_BUTTON_INDEX,
17+
defaultId: 0,
1818
cancelId: 0,
1919
noLink: true,
2020
message: normalizedMessage,

0 commit comments

Comments
 (0)