fix: snapToGrid 문법 오류 수정 - 항상 true로 설정
This commit is contained in:
parent
7f68a70b0f
commit
4cd9629a1d
|
|
@ -1068,7 +1068,7 @@ export default function ScreenDesigner({ selectedScreen, onBackToList }: ScreenD
|
|||
columns: newGridSettings.columns,
|
||||
gap: newGridSettings.gap,
|
||||
padding: newGridSettings.padding,
|
||||
snapToGrid: newGridSettings.
|
||||
snapToGrid: true, // 항상 10px 스냅 활성화
|
||||
};
|
||||
|
||||
const adjustedComponents = layout.components.map((comp) => {
|
||||
|
|
|
|||
Loading…
Reference in New Issue