remove TODO comments

This commit is contained in:
Dr-Blank 2024-09-16 23:54:30 -04:00
parent 61aeaf429f
commit 39286d9e10
No known key found for this signature in database
GPG key ID: 7452CC63F210A266
2 changed files with 1 additions and 3 deletions

View file

@ -101,8 +101,7 @@ class UserLoginMultipleAuth extends HookConsumerWidget {
// will show choice chips for the available authentication methods
// authToken method is always available
final methodChoice = useState<AuthMethodChoice>(
// ! TODO revert to local when openID debugging is done
localAvailable ? AuthMethodChoice.openid : AuthMethodChoice.authToken,
localAvailable ? AuthMethodChoice.local : AuthMethodChoice.authToken,
);
final apiSettings = ref.watch(apiSettingsProvider);