Skip to content

Commit 59b54b3

Browse files
authored
Revert "32331 - AUTH WEB - wording changes related to commissioners for taking affidavits" (#3619)
1 parent 945463e commit 59b54b3

File tree

10 files changed

+20
-25
lines changed

10 files changed

+20
-25
lines changed

auth-web/src/components/auth/create-account/non-bcsc/AccountInstructions.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,10 @@ export default class AccountInstructions extends Vue {
6868
readonly steps = [
6969
{
7070
number: 1,
71-
stepTitle: 'Get an identity affidavit notarized or commissioned before a BC Commissioner for taking affidavits.',
72-
stepDescription: '<p>Visit your local Notary or Lawyer to have this document notarized, or visit a BC Commissioner for Taking Affidavits ' +
73-
'to have the affidavit commissioned before a BC Commissioner. This is to ensure that no one is impersonating you or committing identity ' +
74-
'theft.</p><p><em>Only account administrators are required to verify their identity with a notary or Commissioner.</em><p>',
71+
stepTitle: 'Get an identity affidavit notarized',
72+
stepDescription: '<p>Visit your local notary or lawyer to have this document notarized. This is to ensure that ' +
73+
'no one is impersonating you or committing identity theft.</p><p><em>Only account administrators are ' +
74+
'required to verify their identity with a notary.</em><p>',
7575
icon: 'mdi-scale-balance'
7676
},
7777
{

auth-web/src/components/auth/create-account/non-bcsc/AffidavitDownload.vue

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
Getting your identity affidavit notarized
66
</h1>
77
<p class="mt-5 mb-3">
8-
Download the identity affidavit template below. Then visit your Notary or Lawyer to get it notarized,
9-
or see a BC Commissioner for Taking Affidavits to have it commissioned.
8+
Download the identity affidavit template below and visit a Notary Public or lawyer to have it notarized.
109
</p>
1110
</div>
1211
<v-card
@@ -24,15 +23,11 @@
2423
You must use this template and fill out all fields.
2524
Failure to do so may result in a rejection of your account request.
2625
</li>
27-
<li>
28-
Payment (most Notaries and Lawyers charge a fee for this service. Fees will vary.
29-
There will also be a charge for having your affidavit commissioned by a BC Commissioner for Taking Affidavits).
30-
</li>
26+
<li>Payment (most notaries and lawyers charge a fee for this service. Fees will vary.)</li>
3127
</ol>
3228
</div>
3329
<p class="mb-10">
34-
Once you have your affidavit notarized, or commissioned by a BC Commissioner for taking affidavits, return
35-
to this website and continue to the next step.
30+
Once you have your affidavit notarized, return to this website and continue to the next step.
3631
<span class="lb">You will upload your affidavit later in the account creation process.</span>
3732
</p>
3833
<div class="d-inline-flex flex-column pb-2">

auth-web/src/components/auth/create-account/non-bcsc/NotaryContactForm.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
>
66
<fieldset v-if="notaryContact">
77
<legend class="mb-4">
8-
Notary or BC Commissioner Contact
8+
Notary Contact
99
</legend>
1010
<v-row>
1111
<v-col

auth-web/src/components/auth/create-account/non-bcsc/NotaryInformationForm.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<v-form ref="notaryInformationForm">
33
<fieldset v-if="notaryInfo">
44
<legend class="mb-4">
5-
Notary or BC Commissioner Information
5+
Notary Information
66
</legend>
77
<v-row>
88
<v-col
@@ -12,7 +12,7 @@
1212
<v-text-field
1313
v-model.trim="notaryInfo.notaryName"
1414
filled
15-
label="Name of Notary or BC Commissioner"
15+
label="Name of Notary"
1616
:rules="rules.notaryName"
1717
:disabled="disabled"
1818
/>
@@ -56,7 +56,7 @@ export default class NotaryInformationForm extends Vue {
5656
}
5757
5858
private readonly rules = {
59-
notaryName: [v => !!v || 'Name of Notary or BC Commissioner is required']
59+
notaryName: [v => !!v || 'Name of Notary is required']
6060
}
6161
6262
private updateNotaryAddress (val: Address) {

auth-web/src/components/auth/create-account/non-bcsc/UploadAffidavitStep.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
when authenticated.
66
</p>
77
<h4 class="my-4">
8-
Attach your notarized or commissioned affidavit
8+
Attach your Notarized Affidavit
99
</h4>
1010
<FileUploadPreview
1111
:maxSize="MAX_FILE_SIZE"

auth-web/src/components/auth/staff/review-task/DownloadAffidavit.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ import { Component, Prop, Vue } from 'vue-property-decorator'
3232
export default class DownloadAffidavit extends Vue {
3333
@Prop({ default: null }) tabNumber: number
3434
@Prop({ default: 'Download Affidavit' }) title: string
35-
@Prop({ default: 'Download the notarized or commissioned affidavit associated with this account to verify the account ' +
36-
'creator’s identity and associated information.' }) subTitle: string
35+
@Prop({ default: 'Download the notarized affidavit associated with this account to verify the account creators ' +
36+
'identity and associated information.' }) subTitle: string
3737
@Prop({ default: '' }) affidavitName: string
3838
canDownloadAffidavit: boolean = false
3939
}

auth-web/src/components/auth/staff/review-task/NotaryInformation.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ import { Contact } from '@/models/contact'
5151
@Component({})
5252
export default class NotaryInformation extends Vue {
5353
@Prop({ default: null }) private tabNumber: number
54-
@Prop({ default: 'Notary or BC Commissioner Information' }) private title: string
54+
@Prop({ default: 'Notary Information' }) private title: string
5555
@Prop({ default: {} }) accountNotaryContact: Contact
5656
@Prop({ default: '' }) accountNotaryName: string
5757
}

auth-web/src/views/auth/create-account/NonBcscAccountSetupView.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export default defineComponent({
8989
const accountStepperConfig =
9090
[
9191
{
92-
title: 'Upload your notarized or commissioned affidavit',
92+
title: 'Upload your notarized affidavit',
9393
stepName: 'Upload Affidavit',
9494
component: UploadAffidavitStep,
9595
componentProps: {}

auth-web/src/views/auth/staff/ReviewAccountView.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -320,8 +320,8 @@ export default defineComponent({
320320
}
321321
322322
const compDownloadAffidavit = (tabNumber = 1) => {
323-
let subTitle = 'Download the notarized or commissioned affidavit associated with this account to verify the account ' +
324-
'creator’s identity and associated information.'
323+
let subTitle = 'Download the notarized affidavit associated with this account to verify the account creators ' +
324+
'identity and associated information.'
325325
if (accountUnderReviewAffidavitInfo.value?.status === AffidavitStatus.APPROVED) {
326326
subTitle = 'Download the notarized affidavit associated with this account that has been reviewed and approved.'
327327
}
@@ -375,7 +375,7 @@ export default defineComponent({
375375
`notary-info-${tabNumber}`,
376376
NotaryInformation,
377377
{
378-
title: 'Notary or BC Commissioner Information',
378+
title: 'Notary Information',
379379
accountNotaryContact: accountNotaryContact(),
380380
accountNotaryName: accountUnderReviewAffidavitInfo.value?.issuer || '-'
381381
}

auth-web/tests/unit/components/NotaryInformation.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ describe('NotaryInformation.vue', () => {
1313
let wrapperFactory: any
1414
const props = {
1515
tabNumber: 5,
16-
title: 'Notary or BC Commissioner Information',
16+
title: 'Notary Information',
1717
accountNotaryName: 'test notory',
1818
accountNotaryContact: {
1919
'city': 'Langley',

0 commit comments

Comments
 (0)