style: EditModal 코드 포맷팅 및 불필요한 공백 제거
- trailing whitespace 정리 - 들여쓰기 일관성 유지 - 그룹 편집 안내 메시지 UI 제거
This commit is contained in:
parent
e4be76fe8d
commit
acc2a6169d
|
|
@ -686,13 +686,6 @@ export const EditModal: React.FC<EditModalProps> = ({ className }) => {
|
||||||
maxHeight: "100%",
|
maxHeight: "100%",
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{/* 🆕 그룹 데이터가 있으면 안내 메시지 표시 */}
|
|
||||||
{groupData.length > 1 && (
|
|
||||||
<div className="absolute left-4 top-4 z-10 rounded-md bg-blue-50 px-3 py-2 text-xs text-blue-700 shadow-sm">
|
|
||||||
{groupData.length}개의 관련 품목을 함께 수정합니다
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{screenData.components.map((component) => {
|
{screenData.components.map((component) => {
|
||||||
// 컴포넌트 위치를 offset만큼 조정
|
// 컴포넌트 위치를 offset만큼 조정
|
||||||
const offsetX = screenDimensions?.offsetX || 0;
|
const offsetX = screenDimensions?.offsetX || 0;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue