Skip to content

Commit 8bbf2b4

Browse files
committed
Fix typos.
1 parent 7bcb203 commit 8bbf2b4

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

components/CredentialCardBundle.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
class="q-mr-auto"
2525
:src="credentialOverrides.image"
2626
size="md" />
27-
<span v-html="conctactlessSvg" />
27+
<span v-html="contactlessSvg" />
2828
</div>
2929
</template>
3030
</credential-switch>
@@ -94,7 +94,7 @@ import {
9494
import {computed, onBeforeMount, reactive, ref} from 'vue';
9595
import {CredentialSwitch, DynamicImage} from '@bedrock/vue-vc';
9696
import {formatString, getValueFromPointer} from '../lib/helpers.js';
97-
import {svg as conctactlessSvg} from './contactless.js';
97+
import {svg as contactlessSvg} from './contactless.js';
9898
import {config} from '@bedrock/web';
9999
import {createEmitExtendable} from '@digitalbazaar/vue-extendable-event';
100100
import CredentialDetails from './CredentialDetails.vue';
@@ -376,7 +376,7 @@ export default {
376376
toggleDetailsWindow,
377377
credentialHighlights,
378378
credentialHolderName,
379-
conctactlessSvg,
379+
contactlessSvg,
380380
hasNFCPayload
381381
};
382382
}

components/CredentialDetails.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
class="q-mr-auto"
3737
:src="credentialOverrides.image"
3838
size="md" />
39-
<span v-html="conctactlessSvg" />
39+
<span v-html="contactlessSvg" />
4040
</div>
4141
</template>
4242
</credential-switch>
@@ -124,7 +124,7 @@
124124
*/
125125
import {computed, ref} from 'vue';
126126
import {CredentialSwitch, DynamicImage} from '@bedrock/vue-vc';
127-
import {svg as conctactlessSvg} from './contactless.js';
127+
import {svg as contactlessSvg} from './contactless.js';
128128
import CredentialDetailsViews from './CredentialDetailsViews.vue';
129129
import {helpers} from '@bedrock/web-wallet';
130130
import NfcShare from './NfcShare.vue';
@@ -205,7 +205,7 @@ export default {
205205
206206
return {
207207
cancelWrite,
208-
conctactlessSvg,
208+
contactlessSvg,
209209
showDelete,
210210
description,
211211
hasNFCPayload,

components/NfcShare.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<div class="row justify-between items-center">
1313
<div
1414
style="height: 24px; margin-right: 8px;"
15-
v-html="conctactlessSvg" />
15+
v-html="contactlessSvg" />
1616
<div>
1717
Tap to Share
1818
</div>
@@ -24,7 +24,7 @@
2424

2525
<script>
2626
import {ref, watch} from 'vue';
27-
import {svg as conctactlessSvg} from './contactless.js';
27+
import {svg as contactlessSvg} from './contactless.js';
2828
import {helpers} from '@bedrock/web-wallet';
2929
import {useQuasar} from 'quasar';
3030
@@ -151,7 +151,7 @@ export default {
151151
overwrite: true,
152152
signal
153153
});
154-
notifySuccess('Credential shared sucessfully.');
154+
notifySuccess('Credential shared successfully.');
155155
} else {
156156
throw new Error('NDEFReader not defined!');
157157
}
@@ -168,7 +168,7 @@ export default {
168168
}
169169
170170
return {
171-
conctactlessSvg,
171+
contactlessSvg,
172172
supportsNfc,
173173
isSharing,
174174
writeNfc,

0 commit comments

Comments
 (0)