Remove initial setup view

This commit is contained in:
Christoph Hagen
2025-02-24 18:46:59 +01:00
parent cf17b513d0
commit ccf1ef3734
3 changed files with 0 additions and 97 deletions

View File

@@ -29,9 +29,6 @@ struct MainView: App {
@State
private var showAddSheet = false
@State
private var showInitialSetupSheet = false
@State
private var showStorageStatusSheet = false
@@ -193,12 +190,6 @@ struct MainView: App {
.environmentObject(content)
.environmentObject(selection)
}
.sheet(isPresented: $showInitialSetupSheet) {
InitialSetupView()
.environment(\.language, language)
.environmentObject(content)
.environmentObject(selection)
}
.sheet(isPresented: $showStorageStatusSheet) {
StorageStatusView(isPresented: $showStorageStatusSheet)
.environmentObject(content)