diff --git a/lib/pages/profile_page.dart b/lib/pages/profile_page.dart index f3f1840..3a7d3f7 100644 --- a/lib/pages/profile_page.dart +++ b/lib/pages/profile_page.dart @@ -25,7 +25,6 @@ class _ProfilePageState extends State { bool? _isVerifiedEmail; DateTime? _lastLogout; DateTime? _createdAt; - DateTime? updatedAt; String? _appVersion; bool _loading = true; final _nameC = TextEditingController(); @@ -63,7 +62,6 @@ class _ProfilePageState extends State { _isVerifiedEmail = j['is_verified_email']; _lastLogout = j['last_logout_at'] == null ? null : DateTime.tryParse(j['last_logout_at']?.toString() ?? ''); _createdAt = j['created_at'] == null ? null : DateTime.tryParse(j['created_at']?.toString() ?? ''); - updatedAt = j['updated_at'] == null ? null : DateTime.tryParse(j['updated_at']?.toString() ?? ''); _error = null; _loading = false; }); diff --git a/pubspec.yaml b/pubspec.yaml index 73b303e..1eb9609 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -16,7 +16,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html # In Windows, build-name is used as the major, minor, and patch parts # of the product and file versions while build-number is used as the build suffix. -version: 2.1.0+1 +version: 2.1.1+1 environment: sdk: '>=3.2.5 <4.0.0'