Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
stephencelis committed Jul 31, 2019
1 parent 34fa5d5 commit af0b2d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 0068/ComposableArchitecture.playground/Contents.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import SwiftUI
class AppState: ObservableObject {
@Published var count = 0
@Published var favoritePrimes: [Int] = []
@Published var loggedInUser: User? = nil
@Published var loggedInUser: User?
@Published var activityFeed: [Activity] = []

struct Activity {
Expand Down Expand Up @@ -133,7 +133,7 @@ struct FavoritePrimesView: View {
}
}
}
.navigationBarTitle(Text("Favorite Primes"))
.navigationBarTitle("Favorite Primes")
}
}

Expand Down

0 comments on commit af0b2d9

Please sign in to comment.