From af0b2d977e8d326f62ac7ddc24d2ffeb120bf456 Mon Sep 17 00:00:00 2001 From: Stephen Celis Date: Tue, 30 Jul 2019 21:46:00 -0400 Subject: [PATCH] Cleanup --- 0068/ComposableArchitecture.playground/Contents.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/0068/ComposableArchitecture.playground/Contents.swift b/0068/ComposableArchitecture.playground/Contents.swift index 70fd06b5..290fa72e 100644 --- a/0068/ComposableArchitecture.playground/Contents.swift +++ b/0068/ComposableArchitecture.playground/Contents.swift @@ -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 { @@ -133,7 +133,7 @@ struct FavoritePrimesView: View { } } } - .navigationBarTitle(Text("Favorite Primes")) + .navigationBarTitle("Favorite Primes") } }