diff options
author | Shav Kinderlehrer <[email protected]> | 2023-12-15 11:06:36 -0500 |
---|---|---|
committer | Shav Kinderlehrer <[email protected]> | 2023-12-15 11:06:36 -0500 |
commit | 62a8e5704edb604d41af34df7607adf6492ca855 (patch) | |
tree | d16acc439a63edc096e8abc22320f37e511d082f /Jel/Views/Utility | |
parent | 2e3c12fed339c8bf3dc966217cbdf4c385fb98a1 (diff) | |
download | jel-62a8e5704edb604d41af34df7607adf6492ca855.tar.gz jel-62a8e5704edb604d41af34df7607adf6492ca855.zip |
Add blurHash + send passthrough to JellyfinClientController
Diffstat (limited to 'Jel/Views/Utility')
-rw-r--r-- | Jel/Views/Utility/ConsoleSheetView.swift | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/Jel/Views/Utility/ConsoleSheetView.swift b/Jel/Views/Utility/ConsoleSheetView.swift deleted file mode 100644 index a047315..0000000 --- a/Jel/Views/Utility/ConsoleSheetView.swift +++ /dev/null @@ -1,35 +0,0 @@ -// -// ConsoleSheetView.swift -// Jel -// -// Created by zerocool on 12/12/23. -// - -import SwiftUI -import PulseUI - -struct ConsoleSheetView: View { - @Binding var showingConsoleSheet: Bool - - var body: some View { - NavigationStack { - ConsoleView() - .closeButtonHidden() - .navigationTitle("Debug consoles") - .toolbar { - ToolbarItem { - Button { - showingConsoleSheet.toggle() - } label: { - Text("Done") - .bold() - } - } - } - } - } -} - -#Preview { - ConsoleSheetView(showingConsoleSheet: .constant(true)) -} |