multiple payout page and small fixes
This commit is contained in:
@@ -32,13 +32,13 @@ class VerificationService {
|
||||
return VerificationResponse.fromJson(response);
|
||||
}
|
||||
|
||||
static Future<VerificationResponse> resendLoginCode(PendingLogin pending, {String? destination}) async {
|
||||
static Future<VerificationResponse> resendLoginCode(PendingLogin pending, {String? target}) async {
|
||||
_logger.fine('Resending login confirmation code');
|
||||
final response = await getPOSTResponse(
|
||||
_objectType,
|
||||
'/resend',
|
||||
LoginVerificationRequest(
|
||||
target: destination,
|
||||
target: target,
|
||||
idempotencyKey: pending.idempotencyKey ?? Uuid().v4(),
|
||||
).toJson(),
|
||||
authToken: pending.pendingToken.token,
|
||||
|
||||
Reference in New Issue
Block a user