Skip to content

Commit c0b3604

Browse files
committed
Fix lint errors
1 parent 19816f6 commit c0b3604

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

src/components/editor-toolbar/index.jsx

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ import { useModalize } from './use-modalize';
2929
import { useModalDialogState } from '../editor/use-modal-dialog-state';
3030
import { showBlockInserter, getGBKit } from '../../utils/bridge';
3131

32-
3332
/**
3433
* Renders the editor toolbar containing block-related actions.
3534
*
@@ -102,7 +101,7 @@ const EditorToolbar = ( { className } ) => {
102101
open={ isInserterOpened }
103102
onToggle={ setIsInserterOpened }
104103
/>
105-
);
104+
);
106105

107106
return (
108107
<>
@@ -111,9 +110,7 @@ const EditorToolbar = ( { className } ) => {
111110
label="Editor toolbar"
112111
variant="unstyled"
113112
>
114-
<ToolbarGroup>
115-
{ addBlockButton }
116-
</ToolbarGroup>
113+
<ToolbarGroup>{ addBlockButton }</ToolbarGroup>
117114

118115
{ isSelected && (
119116
<ToolbarGroup>

0 commit comments

Comments
 (0)