func displayProfile(id: Int) -> String { do { return try loadProfile(id: id) } catch { print("profile load failed: \(error)") return "Guest" } }