Skip to content

Commit e64e79b

Browse files
committed
chore: merge conflict resolution
1 parent 13fe166 commit e64e79b

File tree

4 files changed

+0
-21
lines changed

4 files changed

+0
-21
lines changed

src/assets/locales/de/main.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1308,11 +1308,7 @@
13081308
"providerPhoneContact": "Provider Phone Contact",
13091309
"pleaseEnterValidHomePageURL": "Please enter a valid url - eg: https://catena-x.net",
13101310
"pleaseEnterValidEmail": "Please enter a valid Customer Contact E-Mail",
1311-
<<<<<<< HEAD
13121311
"pleaseEnterValidPhone": "Bitte geben Sie eine gültige Kundenkontakt Telefonnummer ein",
1313-
=======
1314-
"pleaseEnterValidPhone": "Please enter a valid Customer Contact Number",
1315-
>>>>>>> e39c0f9e (new: introduced new field of customer contact in service)
13161312
"pleaseEnterValidContact": "Bitte fügen Sie eine gültige Telefonnummer im folgenden Format hinzu: „+ xx xxxx xxxxxx“, „+ xxx xxxx-xxxx“, „+xx xxxxxxxxxx“. Hinweis: Es sind weitere Formate zulässig. Die genannten Formate sind die am häufigsten verwendeten Formate.",
13171313
"privacyInformation": "Privacy Information",
13181314
"privacyInformationDescription": "The privacy information is used to display data types the app may collect on the app detail page. You may select several options OR select “none”.",

src/assets/locales/en/servicerelease.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,7 @@
5353
"providerContactPhone": "Customer Contact Phone",
5454
"pleaseEnterValidHomePageURL": "Please enter a valid url - eg: https://catena-x.net",
5555
"pleaseEnterValidEmail": "Please enter a valid Customer Contact E-Mail",
56-
<<<<<<< HEAD
5756
"pleaseEnterValidPhone": "Please enter a valid Customer Contact Phone Number"
58-
=======
59-
"pleaseEnterValidPhone": "Please enter a valid Customer Contact Phonenumber"
60-
>>>>>>> e39c0f9e (new: introduced new field of customer contact in service)
6157
},
6258
"step3": {
6359
"headerTitle": "Agreements and Consent",

src/components/pages/ServiceReleaseProcess/components/ServiceDetails.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -271,12 +271,8 @@ export default function ServiceDetails() {
271271
body: [
272272
[fetchServiceStatus?.providerUri],
273273
[fetchServiceStatus?.contactEmail],
274-
<<<<<<< HEAD
275274
// TODO: contactNumber is null atm and causing build failure. Once BE resolve the issue then will un-comment this line
276275
// [fetchServiceStatus?.contactNumber],
277-
=======
278-
[fetchServiceStatus?.contactNumber],
279-
>>>>>>> e39c0f9e (new: introduced new field of customer contact in service)
280276
],
281277
}}
282278
horizontal={true}

src/types/Patterns.test.ts

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ import {
3232
isSearchUserEmail,
3333
isValidAppOverviewSearch,
3434
isValidPhone,
35-
isValidAppOverviewSearch,
3635
} from './Patterns'
3736

3837
const TESTDATA = {
@@ -378,14 +377,6 @@ describe('Input Pattern Tests', () => {
378377
expect(isValidAppOverviewSearch(expr)).toBe(false)
379378
})
380379
})
381-
it('validate phone number', () => {
382-
TESTDATA.PHONE.valid.forEach((expr) => {
383-
expect(isValidPhone(expr)).toBe(true)
384-
})
385-
TESTDATA.CLIENTID.invalid.forEach((expr) => {
386-
expect(isValidPhone(expr)).toBe(false)
387-
})
388-
})
389380
it('validate appoverview search', () => {
390381
TESTDATA.appOverview.valid.forEach((expr) => {
391382
expect(isValidAppOverviewSearch(expr)).toBe(true)

0 commit comments

Comments
 (0)