added fix for pangea profile toJson method

This commit is contained in:
ggurdin 2024-07-16 09:53:19 -04:00
parent 6839e11e21
commit 08faf399cc

View file

@ -420,7 +420,7 @@ class PangeaProfileResponse {
factory PangeaProfileResponse.fromJson(Map<String, dynamic> json) {
return PangeaProfileResponse(
profile: PangeaProfile.fromJson(json),
profile: PangeaProfile.fromJson(json[ModelKey.userProfile]),
access: json[ModelKey.userAccess],
);
}