Update: 2026-06-25 00:50:19

This commit is contained in:
Hamza-Ayed
2026-06-25 00:50:19 +03:00
parent 0671388e15
commit eeb4e21f87
12 changed files with 178 additions and 130 deletions

View File

@@ -23,7 +23,8 @@ class PassengerWalletHistoryController extends GetxController {
);
if (res != 'failure') {
archive = jsonDecode(res)['message'];
final decoded = res is String ? jsonDecode(res) : res;
archive = decoded['message'];
} else {
MyDialog().getDialog('No wallet record found'.tr, '', () {
Get.back();