We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d26a5b2 commit d457a92Copy full SHA for d457a92
lib/screens/ai_home.dart
@@ -206,8 +206,9 @@ class _AiHomeState extends State<AiHome> {
206
void _retryLoading(int index) {
207
if (index < 0 ||
208
index >= _controllers.length ||
209
- _controllers[index] == null)
+ _controllers[index] == null) {
210
return;
211
+ }
212
setState(() {
213
_errorMessages[index] = null;
214
_isLoadingList[index] = true;
@@ -220,8 +221,9 @@ class _AiHomeState extends State<AiHome> {
220
221
void _reloadPage(int index) {
222
223
224
225
226
227
228
229
0 commit comments