Skip to content

Commit

Permalink
fix: fix CI unnecessary_non_null_assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
MikkyBoy357 committed Aug 3, 2024
1 parent 587e635 commit c167ce3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/data/request_handlers/profile.dart
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class ProfileRequestHandlerImpl implements ProfileRequestHandler {
// Update user avatarUrl
final updatedUser = await _profileRepository.changeProfileAvatar(
user: user,
imageUrl: downloadUrl!,
imageUrl: downloadUrl,
);

return Response.json(
Expand Down

0 comments on commit c167ce3

Please sign in to comment.