Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rinkalpagdar committed Jan 21, 2025
1 parent 45df8b9 commit 7e437f2
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions packages/block-editor/src/components/inserter/menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,10 @@ function InserterMenu(
const [ filterValue, setFilterValue, delayedFilterValue ] =
useDebouncedInput( __experimentalFilterValue );
const [ hoveredItem, setHoveredItem ] = useState( null );
const [ selectedPatternCategory, setSelectedPatternCategory ] = useState(
{
"name": "core/starter-content",
"label": "Starter content"
}
);
const [ selectedPatternCategory, setSelectedPatternCategory ] = useState( {
name: 'core/starter-content',
label: 'Starter content',
} );
const [ patternFilter, setPatternFilter ] = useState( 'all' );
const [ selectedMediaCategory, setSelectedMediaCategory ] =
useState( null );
Expand Down

0 comments on commit 7e437f2

Please sign in to comment.