fix: don't add null to typed stream (#3819)

This commit is contained in:
ggurdin 2025-08-26 16:47:20 -04:00 committed by GitHub
parent 5efaf8e7f2
commit 077bbb13f5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -131,7 +131,7 @@ class UserController {
),
);
} else {
settingsUpdateStream.add(null);
settingsUpdateStream.add(updatedProfile);
}
}