Skip to content

Commit

Permalink
fix: remove optional chaining
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Bedon committed Sep 3, 2024
1 parent 03af218 commit 56397b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/badge-goal-mixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export default {
return this.apollo.mutate({
mutation: updateUserPreferencesMutation,
variables: {
updateUserPreferencesId: userPreferences?.id,
updateUserPreferencesId: userPreferences.id,
preferences,
},
});
Expand Down

0 comments on commit 56397b9

Please sign in to comment.