fix: snapToGrid 문법 오류 수정 - 항상 true로 설정

This commit is contained in:
kjs 2025-11-10 14:48:53 +09:00
parent 7f68a70b0f
commit 4cd9629a1d
1 changed files with 1 additions and 1 deletions

View File

@ -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) => {