Skip to content

Commit

Permalink
fix: wrong menu item in repost button
Browse files Browse the repository at this point in the history
  • Loading branch information
reyamir committed Sep 20, 2024
1 parent 872a6ce commit b239032
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/note/buttons/repost.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ export function NoteRepost({ large = false }: { large?: boolean }) {

const menuItems = await Promise.all([
MenuItem.new({
text: "Quote",
text: "Repost",
action: async () => repost(),
}),
MenuItem.new({
text: "Repost",
text: "Quote",
action: () => LumeWindow.openEditor(null, event.id),
}),
]);
Expand Down

0 comments on commit b239032

Please sign in to comment.