Skip to content

Commit

Permalink
Just rename an unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
KarinBerg committed Jan 19, 2025
1 parent 84c707d commit 13627c0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ class DashboardCardManagerCubit extends Cubit<DashboardCardManagerState> {

try {
// TODO: currently payment phone number is used for login, we need to switch that

final paymentPhoneNumber = recipient.mobileMoneyPhone;
final contactPhoneNumber = recipient.communicationMobilePhone;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class UserRemoteDataSource implements UserDataSource {
verificationCompleted: (credential) => onVerificationCompleted(credential),
verificationFailed: (ex) => onVerificationFailed(ex),
codeSent: (verificationId, forceResendingToken) => onCodeSend(verificationId, forceResendingToken),
codeAutoRetrievalTimeout: (e) {
codeAutoRetrievalTimeout: (verificationId) {
log("auto-retrieval timeout");
},
);
Expand Down

0 comments on commit 13627c0

Please sign in to comment.