Skip to content

Commit

Permalink
chore: release 4.0.0 (#1034)
Browse files Browse the repository at this point in the history
* chore: release 4.0.0

* fix: null check on null value

---------

Co-authored-by: Niraj Nandish <[email protected]>
  • Loading branch information
Sembauke and Nirajn2311 authored Jul 6, 2023
1 parent 8718943 commit e1f0509
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ class ChallengeViewModel extends BaseViewModel {
description: 'Are you sure you want to reset your code?',
mainButtonTitle: 'Reset');

if (res!.confirmed) {
if (res?.confirmed == true) {
Challenge? currChallenge = await challenge;

for (ChallengeFile file in currChallenge!.files) {
Expand Down
2 changes: 1 addition & 1 deletion mobile-app/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: freecodecamp
description: freecodecamp.org app.
publish_to: none
version: 3.5.0+30500
version: 4.0.0+40000
environment:
sdk: ">=2.12.0 <3.0.0"
dependencies:
Expand Down

0 comments on commit e1f0509

Please sign in to comment.