Skip to content

Commit

Permalink
code
Browse files Browse the repository at this point in the history
  • Loading branch information
r-dent committed Feb 19, 2024
1 parent ed6f9aa commit 8c8c050
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Example/Example App/ContentView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ struct ContentView: View {
Button("Start the Stream Deck Simulator") {
StreamDeckSimulator.show(streamDeck: .mini)
}
} else { ForEach(devices) { device in
} else { ForEach(devices) { device in
VStack(alignment: .leading) {
Text("__\(device.info.productName)__")
Text("Serial: \(device.info.serialNumber)")
Expand Down
2 changes: 1 addition & 1 deletion Sources/StreamDeckSimulator/StreamDeckSimulator.swift
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public final class StreamDeckSimulator {
close();

guard let scene = activeScene else {
return }
return }

lastSelectedProduct = product

Expand Down

0 comments on commit 8c8c050

Please sign in to comment.