diff --git a/src/components/note/buttons/repost.tsx b/src/components/note/buttons/repost.tsx index a93ce42b..12273b15 100644 --- a/src/components/note/buttons/repost.tsx +++ b/src/components/note/buttons/repost.tsx @@ -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), }), ]);