Skip to content
This repository was archived by the owner on Dec 12, 2024. It is now read-only.

Commit 240f5ca

Browse files
authored
fix: reset quote async value (#295)
1 parent 8487120 commit 240f5ca

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lib/features/payment/payment_details_page.dart

+4-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,10 @@ class PaymentDetailsPage extends HookConsumerWidget {
162162
),
163163
);
164164

165-
if (issuedCredential == null) return;
165+
if (issuedCredential == null) {
166+
quote.value = null;
167+
return;
168+
}
166169

167170
credentials = [issuedCredential as String];
168171
}

0 commit comments

Comments
 (0)