Skip to content

Commit d924b9a

Browse files
stephencelisactions-user
authored andcommitted
Run swift-format
1 parent a4ea02e commit d924b9a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Examples/CaseStudies/SwiftUICaseStudies/04-HigherOrderReducers-ElmLikeSubscriptions.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ let clockReducer = Reducer<ClockState, ClockAction, ClockEnvironment>.combine(
7878

7979
struct ClockView: View {
8080
let store: Store<ClockState, ClockAction>
81-
81+
8282
var body: some View {
8383
WithViewStore(store) { viewStore in
8484
VStack {

Examples/VoiceMemos/VoiceMemos/VoiceMemo.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,8 @@ struct VoiceMemoView: View {
100100

101101
var body: some View {
102102
WithViewStore(store) { viewStore in
103-
let currentTime = viewStore.mode.progress.map { $0 * viewStore.duration } ?? viewStore.duration
103+
let currentTime =
104+
viewStore.mode.progress.map { $0 * viewStore.duration } ?? viewStore.duration
104105
HStack {
105106
TextField(
106107
"Untitled, \(viewStore.date.formatted(date: .numeric, time: .shortened))",

0 commit comments

Comments
 (0)