Skip to content

Commit

Permalink
fix: comment resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
AhsanRns committed May 9, 2024
1 parent da2fbe1 commit 2ab01ff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions wallet/lib/services/data_stores/remote_data_store.dart
Original file line number Diff line number Diff line change
Expand Up @@ -913,13 +913,13 @@ class RemoteDataStoreImp implements RemoteDataStore {

final response = await queryClient.recipe(request);
return response;
}, retryIf: (_) => true );
}, retryIf: (_) => true ,);

if (response.hasRecipe()) {
return response.recipe;
}
throw RecipeNotFoundFailure(LocaleKeys.recipe_not_found.tr());
}catch(_){
} catch (_) {
throw RecipeNotFoundFailure(LocaleKeys.recipe_not_found.tr());
}
}
Expand Down Expand Up @@ -984,7 +984,7 @@ class RemoteDataStoreImp implements RemoteDataStore {

throw CookBookNotFoundFailure(LocaleKeys.cookbook_not_found.tr());

}catch(_){
} catch (_) {
throw CookBookNotFoundFailure(LocaleKeys.cookbook_not_found.tr());
}
}
Expand Down

0 comments on commit 2ab01ff

Please sign in to comment.