Skip to content

Commit

Permalink
[lexical-playground] Bug Fix: Update tooltip for redo button with cor…
Browse files Browse the repository at this point in the history
…rect macOS shortcut (#6497)
  • Loading branch information
etrepum authored Aug 6, 2024
1 parent 20e4ea1 commit 9b45ce9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -879,7 +879,7 @@ export default function ToolbarPlugin({
onClick={() => {
activeEditor.dispatchCommand(REDO_COMMAND, undefined);
}}
title={IS_APPLE ? 'Redo (⌘Y)' : 'Redo (Ctrl+Y)'}
title={IS_APPLE ? 'Redo (⇧⌘Z)' : 'Redo (Ctrl+Y)'}
type="button"
className="toolbar-item"
aria-label="Redo">
Expand Down

0 comments on commit 9b45ce9

Please sign in to comment.