This commit is contained in:
Felipe
2023-12-23 11:06:10 -05:00
parent c19f75c6a6
commit 956222de76
5 changed files with 14 additions and 14 deletions
@@ -281,7 +281,7 @@ class AuthenticationRepository extends GetxController {
final snapshot =
await FirebaseFirestore.instance.collection('users').doc(uid).get();
final Map<String, dynamic>? data = snapshot.data();
tarifa = data?['tarifa'] ?? 0;
tarifa = data?['tarifas'] ?? 0;
} catch (e) {
print('Error getting tarifa: $e');
}