diff --git a/AreYouSleeping/Views/ContentView.swift b/AreYouSleeping/Views/ContentView.swift index 2806a0e..8431ab9 100644 --- a/AreYouSleeping/Views/ContentView.swift +++ b/AreYouSleeping/Views/ContentView.swift @@ -1,5 +1,4 @@ import SwiftUI -import UIKit struct ContentView: View { @EnvironmentObject var store: Store @@ -30,10 +29,5 @@ struct ContentView: View { .tag(2) } .tint(.blue) - .onAppear { - let appearance = UITabBarAppearance() - appearance.configureWithDefaultBackground() - UITabBar.appearance().scrollEdgeAppearance = appearance - } } }