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 // will show choice chips for the available authentication methods
// authToken method is always available // authToken method is always available
final methodChoice = useState<AuthMethodChoice>( final methodChoice = useState<AuthMethodChoice>(
// ! TODO revert to local when openID debugging is done localAvailable ? AuthMethodChoice.local : AuthMethodChoice.authToken,
localAvailable ? AuthMethodChoice.openid : AuthMethodChoice.authToken,
); );
final apiSettings = ref.watch(apiSettingsProvider); final apiSettings = ref.watch(apiSettingsProvider);

View file

@ -199,7 +199,6 @@ class MyAppRouter {
BuildContext context, BuildContext context,
GoRouterState state, GoRouterState state,
) { ) {
// TODO: handle the open id callback
// extract the code and state from the uri // extract the code and state from the uri
final code = state.uri.queryParameters['code']; final code = state.uri.queryParameters['code'];
final stateParam = state.uri.queryParameters['state']; final stateParam = state.uri.queryParameters['state'];