Skip to content

Commit

Permalink
fix E2E test
Browse files Browse the repository at this point in the history
  • Loading branch information
gigitux committed Nov 4, 2024
1 parent 61b90b5 commit 6aaf160
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const useTemplatePartsGroupedByArea = ( items ) => {
const key = accumulator[ item.area ]
? item.area
: TEMPLATE_PART_AREA_DEFAULT_CATEGORY;
accumulator[ key ].templateParts.push( item );
accumulator[ key ]?.templateParts?.push( item );
return accumulator;
}, knownAreas );

Expand Down

0 comments on commit 6aaf160

Please sign in to comment.