fix: improve chat auto-scroll logic, reduce socket timeout, and prevent duplicate message sends

This commit is contained in:
pradeepkumar
2026-03-28 18:50:25 +05:30
parent 130583c98c
commit d9399a7be3
3 changed files with 34 additions and 13 deletions

View File

@@ -277,7 +277,7 @@ class SocketService {
});
return completer.future.timeout(
const Duration(seconds: 10),
const Duration(seconds: 5),
onTimeout: () => null,
);
}