Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bobnik committed Oct 15, 2023
1 parent 5149736 commit 0e88ae4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/features/shapes/FileImport.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,11 @@ export default class FileImport extends Shape {
}

initialDimensions(props) {
if (!props) { // undefined during import integrity checks
if (!props) {
// undefined during import integrity checks
return {
width: 0,
height: 0
height: 0,
}
}

Expand Down

0 comments on commit 0e88ae4

Please sign in to comment.