summaryrefslogtreecommitdiff
path: root/Jel/Views/Dashboard/Library/LibraryView.swift
diff options
context:
space:
mode:
authorShav Kinderlehrer <[email protected]>2023-12-22 19:29:07 -0500
committerShav Kinderlehrer <[email protected]>2023-12-22 19:29:07 -0500
commit568b4d6126e1408e8e16417f22370a4ced44d105 (patch)
tree8bd726c7d0259b17746f0db9c55c54f80e56d5de /Jel/Views/Dashboard/Library/LibraryView.swift
parent5b78933de774fcf9291ba40e74dd928925699b0c (diff)
downloadjel-568b4d6126e1408e8e16417f22370a4ced44d105.tar.gz
jel-568b4d6126e1408e8e16417f22370a4ced44d105.zip
Implement library view
Diffstat (limited to 'Jel/Views/Dashboard/Library/LibraryView.swift')
-rw-r--r--Jel/Views/Dashboard/Library/LibraryView.swift2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jel/Views/Dashboard/Library/LibraryView.swift b/Jel/Views/Dashboard/Library/LibraryView.swift
index 39ca6ba..63bfd64 100644
--- a/Jel/Views/Dashboard/Library/LibraryView.swift
+++ b/Jel/Views/Dashboard/Library/LibraryView.swift
@@ -16,7 +16,7 @@ struct LibraryView: View {
@State var libraries: [BaseItemDto] = []
var body: some View {
ScrollView(.horizontal, showsIndicators: false) {
- LazyHStack {
+ HStack {
ForEach(libraries) {library in
if library.collectionType == "movies" || library.collectionType == "tvshows" {
LibraryIconView(library: library)