multiple payout page and small fixes

This commit is contained in:
Arseni
2026-02-11 02:48:30 +03:00
parent 66989ea36c
commit edb43f9909
77 changed files with 2120 additions and 1289 deletions

View File

@@ -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,