diff options
Diffstat (limited to 'Jel/Views/Dashboard/DashboardView.swift')
-rw-r--r-- | Jel/Views/Dashboard/DashboardView.swift | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Jel/Views/Dashboard/DashboardView.swift b/Jel/Views/Dashboard/DashboardView.swift index 2658180..50d3538 100644 --- a/Jel/Views/Dashboard/DashboardView.swift +++ b/Jel/Views/Dashboard/DashboardView.swift @@ -14,10 +14,10 @@ struct DashboardView: View { var body: some View { NavigationStack { VStack { - LibraryView() + DashboardLibraryView() } .toolbar { - ToolbarItem { + ToolbarItem(placement: .topBarTrailing) { Button { showingSettingsSheet.toggle() } label: { @@ -32,6 +32,6 @@ struct DashboardView: View { } } -#Preview { - DashboardView() -} +//#Preview { +// DashboardView() +//} |