From 700ace10d92499147adf741d239985594cc48b27 Mon Sep 17 00:00:00 2001 From: Keita Watanabe Date: Sat, 4 Mar 2023 17:31:22 +0900 Subject: [PATCH] fix about view preview (#1156) --- IceCubesApp/App/Tabs/Settings/AboutView.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/IceCubesApp/App/Tabs/Settings/AboutView.swift b/IceCubesApp/App/Tabs/Settings/AboutView.swift index 8e16d849..c1c2da47 100644 --- a/IceCubesApp/App/Tabs/Settings/AboutView.swift +++ b/IceCubesApp/App/Tabs/Settings/AboutView.swift @@ -100,5 +100,6 @@ struct AboutView: View { struct AboutView_Previews: PreviewProvider { static var previews: some View { AboutView() + .environmentObject(Theme.shared) } }