Skip to content

Commit

Permalink
Removed "participantID" and related refs
Browse files Browse the repository at this point in the history
  • Loading branch information
abkslm committed Oct 26, 2023
1 parent 84cf4ca commit 7be3ea1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion Spinner/ContentView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ struct ContentView: View {
VStack {

switch loadState {
case .waiting: InitView(loadState: $loadState, participantID: "")
case .waiting: InitView(loadState: $loadState)
.transition(.push(from: .bottom)
.animation(.easeOut(duration: 0.40))
.combined(with: .opacity))
Expand Down
4 changes: 0 additions & 4 deletions Spinner/InitView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,12 @@ import SwiftUI
struct InitView: View {

@Binding var loadState: LoadState

@FocusState var focusIDField: Bool
@State var participantID: String

private func setRunning () {
loadState = .running
}



var body: some View {
VStack {

Expand Down

0 comments on commit 7be3ea1

Please sign in to comment.