From 8b716c7046f57c00c55f69167a4277193dd84d78 Mon Sep 17 00:00:00 2001 From: Elyor <95209607+Elyor1977@users.noreply.github.com> Date: Mon, 14 Sep 2026 07:23:33 +0500 Subject: [PATCH] flutter: fix End connetion typo (#16202) Co-authored-by: Elyor1977 --- flutter/lib/mobile/pages/remote_page.dart | 2 +- flutter/lib/mobile/pages/view_camera_page.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/flutter/lib/mobile/pages/remote_page.dart b/flutter/lib/mobile/pages/remote_page.dart index f42d08a67..edcfe2bca 100644 --- a/flutter/lib/mobile/pages/remote_page.dart +++ b/flutter/lib/mobile/pages/remote_page.dart @@ -175,7 +175,7 @@ class _RemotePageState extends State with WidgetsBindingObserver { // `on_voice_call_closed` should be called when the connection is ended. // The inner logic of `on_voice_call_closed` will check if the voice call is active. // Only one client is considered here for now. - gFFI.chatModel.onVoiceCallClosed("End connetion"); + gFFI.chatModel.onVoiceCallClosed("End connection"); } @override diff --git a/flutter/lib/mobile/pages/view_camera_page.dart b/flutter/lib/mobile/pages/view_camera_page.dart index 0898125c4..1bedca19a 100644 --- a/flutter/lib/mobile/pages/view_camera_page.dart +++ b/flutter/lib/mobile/pages/view_camera_page.dart @@ -141,7 +141,7 @@ class _ViewCameraPageState extends State // `on_voice_call_closed` should be called when the connection is ended. // The inner logic of `on_voice_call_closed` will check if the voice call is active. // Only one client is considered here for now. - gFFI.chatModel.onVoiceCallClosed("End connetion"); + gFFI.chatModel.onVoiceCallClosed("End connection"); } @override