@@ -154,7 +154,7 @@ class _AddAccountPageState extends State<AddAccountPage> {
154
154
if (! context.mounted) {
155
155
return ;
156
156
}
157
- // TODO(#35 ) give more helpful feedback; see `fetchServerSettings`
157
+ // TODO(#105 ) give more helpful feedback; see `fetchServerSettings`
158
158
// in zulip-mobile's src/message/fetchActions.js. Needs #37.
159
159
showErrorDialog (context: context,
160
160
title: 'Could not connect' , message: 'Failed to connect to server:\n $url ' );
@@ -280,7 +280,7 @@ class _PasswordLoginPageState extends State<PasswordLoginPage> {
280
280
realmUrl: realmUrl, username: username, password: password);
281
281
} on Exception { // TODO(#37): distinguish API exceptions
282
282
if (! context.mounted) return ;
283
- // TODO(#35 ) give more helpful feedback. Needs #37. The RN app is
283
+ // TODO(#105 ) give more helpful feedback. Needs #37. The RN app is
284
284
// unhelpful here; we should at least recognize invalid auth errors, and
285
285
// errors for deactivated user or realm (see zulip-mobile#4571).
286
286
showErrorDialog (context: context, title: 'Login failed' );
@@ -296,7 +296,7 @@ class _PasswordLoginPageState extends State<PasswordLoginPage> {
296
296
}
297
297
298
298
final globalStore = GlobalStoreWidget .of (context);
299
- // TODO(#35 ): give feedback to user on SQL exception, like dupe realm+user
299
+ // TODO(#108 ): give feedback to user on SQL exception, like dupe realm+user
300
300
final accountId = await globalStore.insertAccount (AccountsCompanion .insert (
301
301
realmUrl: realmUrl,
302
302
email: result.email,
@@ -345,7 +345,7 @@ class _PasswordLoginPageState extends State<PasswordLoginPage> {
345
345
: 'Please enter your username.' ;
346
346
}
347
347
if (requireEmailFormatUsernames) {
348
- // TODO(#35 ): validate is in the shape of an email
348
+ // TODO(#106 ): validate is in the shape of an email
349
349
}
350
350
return null ;
351
351
},
0 commit comments