Skip to content

Commit

Permalink
includes* fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanah committed Aug 2, 2023
1 parent 16f8c33 commit 6a5888e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/permissions.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const cantUpdateDevAdminDetails = (devAdminEmail, authEmail) => {
'one.community@me.com',
'jsabol@me.com'
]
return devAdminEmail === 'devadmin@hgn.net' && allowedEmails.contains(authEmail);
return devAdminEmail === 'devadmin@hgn.net' && allowedEmails.includes(authEmail);
};


Expand Down

0 comments on commit 6a5888e

Please sign in to comment.