create child components for advanced_search_filter_view

This commit is contained in:
ManhNTX
2022-06-26 20:38:48 +07:00
committed by Dat H. Pham
parent 01b3d879f0
commit 8ab7b3adaa
9 changed files with 457 additions and 331 deletions
@@ -13,7 +13,7 @@ class CheckOIDCIsAvailableInteractor {
try {
final result = await _oidcRepository.checkOIDCIsAvailable(oidcRequest);
log('CheckOIDCIsAvailableInteractor::execute(): result: $result');
return Right<Failure, Success>(CheckOIDCIsAvailableSuccess(result));
return Left<Failure, Success>(CheckOIDCIsAvailableFailure('aaaa'));
} catch (e) {
log('CheckOIDCIsAvailableInteractor::execute(): ERROR: $e');
return Left<Failure, Success>(CheckOIDCIsAvailableFailure(e));