diff options
Diffstat (limited to 'Hotline/Views/ChatView.swift')
| -rw-r--r-- | Hotline/Views/ChatView.swift | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Hotline/Views/ChatView.swift b/Hotline/Views/ChatView.swift index ce3942e..60951c3 100644 --- a/Hotline/Views/ChatView.swift +++ b/Hotline/Views/ChatView.swift @@ -7,7 +7,6 @@ extension View { } struct ChatView: View { -// @Environment(HotlineClient.self) private var hotline @Environment(Hotline.self) private var model: Hotline @Environment(\.colorScheme) var colorScheme @@ -180,5 +179,5 @@ struct ChatView: View { #Preview { ChatView() - .environment(Hotline(trackerClient: HotlineTrackerClient(), client: HotlineNewClient())) + .environment(Hotline(trackerClient: HotlineTrackerClient(), client: HotlineClient())) } |