Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
ruggi committed Jul 15, 2024
1 parent e143607 commit f557386
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions editor/src/components/inspector/common/css-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -769,8 +769,7 @@ export function printArrayCSSNumber(array: Array<GridCSSNumber>): string {
.map((dimension) => {
const printed = printCSSNumber(dimension, null)
const areaName = dimension.areaName != null ? `[${dimension.areaName}] ` : ''
const value = typeof printed === 'string' ? printed : `${printed}`
return `${areaName}${value}`
return `${areaName}${printed}`
})
.join(' ')
}
Expand Down

0 comments on commit f557386

Please sign in to comment.