Fix typo in Container.jsx (#7583)

mulitple -> multiple
This commit is contained in:
Ikko Eltociear Ashimine 2023-11-01 20:50:04 +09:00 committed by GitHub
parent 9485f8668f
commit dec3f9c3d9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -328,7 +328,7 @@ export const Container = ({
return;
}
const deltaWidth = Math.round(d.width / gridWidth) * gridWidth; //rounding of width of element to nearest mulitple of gridWidth
const deltaWidth = Math.round(d.width / gridWidth) * gridWidth; //rounding of width of element to nearest multiple of gridWidth
const deltaHeight = d.height;
if (deltaWidth === 0 && deltaHeight === 0) {