🐛 Fixes bugs

This commit is contained in:
2025-05-22 02:31:24 +08:00
parent 461bd223d6
commit 835b90bf5a
8 changed files with 30 additions and 22 deletions

View File

@ -46,7 +46,7 @@ _SnAccountProfile _$SnAccountProfileFromJson(Map<String, dynamic> json) =>
firstName: json['first_name'] as String?,
middleName: json['middle_name'] as String?,
lastName: json['last_name'] as String?,
bio: json['bio'] as String?,
bio: json['bio'] as String? ?? '',
pictureId: json['picture_id'] as String?,
experience: (json['experience'] as num).toInt(),
level: (json['level'] as num).toInt(),