Skip to content

Commit

Permalink
chore: apply changes after linting [bot]
Browse files Browse the repository at this point in the history
  • Loading branch information
taiga-family-bot committed Sep 6, 2023
1 parent edfe35c commit ce18b0c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ describe('Phone', () => {
.type('{leftArrow}'.repeat('-32'.length))
.realPress([
'Shift',
...Array('11'.length).fill('ArrowLeft'),
...new Array('11'.length).fill('ArrowLeft'),
]);

cy.get('@input')
Expand All @@ -117,7 +117,7 @@ describe('Phone', () => {
.type('{leftArrow}')
.realPress([
'Shift',
...Array('1-3'.length).fill('ArrowLeft'),
...new Array('1-3'.length).fill('ArrowLeft'),
]);

cy.get('@input')
Expand All @@ -138,7 +138,7 @@ describe('Phone', () => {
.type('{leftArrow}'.repeat('-32'.length))
.realPress([
'Shift',
...Array('11'.length).fill('ArrowLeft'),
...new Array('11'.length).fill('ArrowLeft'),
]);

cy.get('@input')
Expand All @@ -153,7 +153,7 @@ describe('Phone', () => {
.type('{leftArrow}')
.realPress([
'Shift',
...Array('1-3'.length).fill('ArrowLeft'),
...new Array('1-3'.length).fill('ArrowLeft'),
]);

cy.get('@input')
Expand Down
2 changes: 1 addition & 1 deletion projects/phone/src/lib/masks/phone/phone-mask-free.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export function maskitoPhoneFreeOptionsGenerator({
metadata: MetadataJson;
}): Required<MaskitoOptions> {
const formatter = new AsYouType(defaultIsoCode, metadata);
const prefix = `+`;
const prefix = '+';

return {
...MASKITO_DEFAULT_OPTIONS,
Expand Down

0 comments on commit ce18b0c

Please sign in to comment.