From 2db8512dad6383ab7614dfa6a0429f4d9b44bf7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Thu, 4 Dec 2025 16:10:36 +0800 Subject: [PATCH] Fix profile picker row spacing on iOS 26+ --- .../Views/Dashboard/Cards/ProfilePickerSheet.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ApplicationLibrary/Views/Dashboard/Cards/ProfilePickerSheet.swift b/ApplicationLibrary/Views/Dashboard/Cards/ProfilePickerSheet.swift index ba70e35..a47cdb5 100644 --- a/ApplicationLibrary/Views/Dashboard/Cards/ProfilePickerSheet.swift +++ b/ApplicationLibrary/Views/Dashboard/Cards/ProfilePickerSheet.swift @@ -260,7 +260,7 @@ struct ProfilePickerSheet: View { .environmentObject(environments) .listRowBackground(Color.clear) .listRowSeparator(.hidden) - .listRowInsets(EdgeInsets(top: 6, leading: 16, bottom: 6, trailing: 16)) + .listRowInsets(EdgeInsets(top: 4, leading: 16, bottom: 4, trailing: 16)) } .onMove(perform: moveProfile) .onDelete(perform: deleteProfile)