Skip to content

Commit

Permalink
Updated copy to match form option
Browse files Browse the repository at this point in the history
  • Loading branch information
maximilianoertel committed Oct 10, 2024
1 parent 4fa5c46 commit ceb299b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/auth/RegisterStudent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
name="noActivationCode"
@change="updateActivationCode"
/>
<label for="noActivationCode" class="ml-2">I don't have code</label>
<label for="noActivationCode" class="ml-2">I don't have a code</label>
</div>
</div>
<PvInputGroup v-if="!student.noActivationCode">
Expand Down Expand Up @@ -545,10 +545,10 @@ const validateCode = async (studentCode, outerIndex = 0) => {
console.error('Failed to validate activation code', error);
if ((!state.students[outerIndex].noActivationCode || props.code) && studentCode) {
dialogMessage.value = `The code ${studentCode} does not belong to any organization \n please enter a valid code or select: "I do not have a code"`;
dialogMessage.value = `The code ${studentCode} does not belong to any organization \n please enter a valid code or select: "I don't have a code"`;
} else {
dialogMessage.value =
'The code does not belong to any organization \n Please enter a valid code or select: \n "I do not have a code "';
'The code does not belong to any organization \n Please enter a valid code or select: \n "I don\'t have a code"';
}
showErrorDialog();
Expand Down

0 comments on commit ceb299b

Please sign in to comment.