Skip to content

Commit

Permalink
Merge pull request #67 from ITPNYU/feature/fix_position
Browse files Browse the repository at this point in the history
fix loading position
  • Loading branch information
rlho authored Nov 20, 2023
2 parents 0eee08e + 1bc7382 commit 53ba776
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ export const Liaisons = () => {

console.log('liaisonEmails', liaisonEmails);
const addLiaisonUser = async () => {
setLoading(true);
if (email === '' || department === '') {
alert('Please fill in all the fields');
return;
}
setLoading(true);

if (liaisonEmails.includes(email)) {
alert('This user is already registered');
Expand Down

0 comments on commit 53ba776

Please sign in to comment.