Skip to content

Commit

Permalink
Fix insert link button order (#1489) (#1490)
Browse files Browse the repository at this point in the history
  • Loading branch information
fer0n committed May 18, 2024
1 parent 3c99f4b commit 69ab366
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/shared/markdown/editing/modes/DefaultMode.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -249,13 +249,13 @@ export default function DefaultMode({
},
],
buttons: [
"Cancel",
{
text: "OK",
handler: ({ text, url }) => {
insertMarkdownLink(text, url);
},
},
"Cancel",
],
});

Expand Down

0 comments on commit 69ab366

Please sign in to comment.