From dec3f9c3d9b51e0819e35e20a98f6b72829f3285 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Wed, 1 Nov 2023 20:50:04 +0900 Subject: [PATCH] Fix typo in Container.jsx (#7583) mulitple -> multiple --- frontend/src/Editor/Container.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/Editor/Container.jsx b/frontend/src/Editor/Container.jsx index f7f49a994c..104cb52d2e 100644 --- a/frontend/src/Editor/Container.jsx +++ b/frontend/src/Editor/Container.jsx @@ -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) {