Browse Source

Fixed error when read stream cannot be created and crash server

Alex Tran 3 years ago
parent
commit
8783af8fd0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      mobile/lib/modules/login/ui/login_form.dart

+ 1 - 1
mobile/lib/modules/login/ui/login_form.dart

@@ -15,7 +15,7 @@ class LoginForm extends HookConsumerWidget {
   Widget build(BuildContext context, WidgetRef ref) {
     final usernameController = useTextEditingController(text: 'testuser@email.com');
     final passwordController = useTextEditingController(text: 'password');
-    final serverEndpointController = useTextEditingController(text: 'http://192.168.1.103:2283');
+    final serverEndpointController = useTextEditingController(text: 'http://192.168.1.216:2283');
 
     return Center(
       child: ConstrainedBox(