diff --git a/packages/editor/src/components/rich-text/format-toolbar/index.js b/packages/editor/src/components/rich-text/format-toolbar/index.js index f3b532bb3921a..ea1a0ff185ce6 100644 --- a/packages/editor/src/components/rich-text/format-toolbar/index.js +++ b/packages/editor/src/components/rich-text/format-toolbar/index.js @@ -35,18 +35,18 @@ const FORMATTING_CONTROLS = [ shortcut: displayShortcut.primary( 'i' ), format: 'italic', }, - { - icon: 'editor-strikethrough', - title: __( 'Strikethrough' ), - shortcut: displayShortcut.access( 'd' ), - format: 'strikethrough', - }, { icon: 'admin-links', title: __( 'Link' ), shortcut: displayShortcut.primary( 'k' ), format: 'link', }, + { + icon: 'editor-strikethrough', + title: __( 'Strikethrough' ), + shortcut: displayShortcut.access( 'd' ), + format: 'strikethrough', + }, ]; // Default controls shown if no `enabledControls` prop provided