Skip to content

Commit

Permalink
Update src/account/components/AccountProfile.js
Browse files Browse the repository at this point in the history
Co-authored-by: Paul Schreiber <[email protected]>
  • Loading branch information
josebui and paulschreiber authored Mar 19, 2024
1 parent 87f257c commit 6f2e736
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/account/components/AccountProfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ const AccountProfile = () => {
});

const allPromises = [saveUserPromise, ...savePreferencesPromises].filter(
promise => !!promise
promise => Boolean(promise)
);
Promise.all(allPromises).then(responses => {
const allSuccess = responses.every(
Expand Down

0 comments on commit 6f2e736

Please sign in to comment.