From 13ffbefddae66f41ed707386b00b6e359048ffe7 Mon Sep 17 00:00:00 2001 From: opficdev <162981733+opficdev@users.noreply.github.com> Date: Wed, 3 Jun 2026 12:05:04 +0900 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20contentShape=20=EC=9C=84=EC=B9=98=20?= =?UTF-8?q?=EC=9D=B4=EB=8F=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Application/DevLogPresentation/Sources/Home/Home/HomeView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Application/DevLogPresentation/Sources/Home/Home/HomeView.swift b/Application/DevLogPresentation/Sources/Home/Home/HomeView.swift index ee3040c0..3fd0e247 100644 --- a/Application/DevLogPresentation/Sources/Home/Home/HomeView.swift +++ b/Application/DevLogPresentation/Sources/Home/Home/HomeView.swift @@ -383,8 +383,8 @@ struct HomeView: View { .foregroundStyle(Color.primary) Spacer() } - .padding(.vertical, -6) .contentShape(.rect) + .padding(.vertical, -6) } private func openTodoEditor(for todoCategory: TodoCategory) { From d6b4a60288b44a3e8a02a32f9467c9e7ad9fd96e Mon Sep 17 00:00:00 2001 From: opficdev <162981733+opficdev@users.noreply.github.com> Date: Wed, 3 Jun 2026 13:37:39 +0900 Subject: [PATCH 2/2] =?UTF-8?q?refactor:=20EdgeInset=EC=9C=BC=EB=A1=9C=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Application/DevLogPresentation/Sources/Home/Home/HomeView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Application/DevLogPresentation/Sources/Home/Home/HomeView.swift b/Application/DevLogPresentation/Sources/Home/Home/HomeView.swift index 3fd0e247..613af432 100644 --- a/Application/DevLogPresentation/Sources/Home/Home/HomeView.swift +++ b/Application/DevLogPresentation/Sources/Home/Home/HomeView.swift @@ -124,6 +124,7 @@ struct HomeView: View { let preferences = coordinator.viewModel.state.preferences ForEach(preferences.filter { $0.isVisible }, id: \.id) { item in todoCategoryRow(item) + .listRowInsets((EdgeInsets(top: 0, leading: 16, bottom: 0, trailing: 16))) } } }, header: { @@ -384,7 +385,6 @@ struct HomeView: View { Spacer() } .contentShape(.rect) - .padding(.vertical, -6) } private func openTodoEditor(for todoCategory: TodoCategory) {