Skip to content

Commit 42bf3cb

Browse files
committed
chore: commented out the null field
1 parent cf081ee commit 42bf3cb

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

src/assets/locales/de/servicerelease.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,8 @@
257257
"heading": "Provider Information",
258258
"message": "If you have any question, want to get in contact or visit the provider website, you can find all necessary information below.",
259259
"homepage": "Homepage",
260-
"email": "E-Mail"
260+
"email": "E-Mail",
261+
"phone": "Telefon"
261262
},
262263
"technicalUserSetup": {
263264
"heading": "Technical User Setup",

src/assets/locales/en/servicerelease.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,8 @@
257257
"heading": "Provider Information",
258258
"message": "If you have any question, want to get in contact or visit the provider website, you can find all necessary information below.",
259259
"homepage": "Homepage",
260-
"email": "E-Mail"
260+
"email": "E-Mail",
261+
"phone": "Phone"
261262
},
262263
"technicalUserSetup": {
263264
"heading": "Technical User Setup",

src/components/pages/ServiceAdminBoardDetail/index.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,7 @@ export default function ServiceAdminBoardDetail() {
266266
head: [
267267
t('adminboardDetail.provider.homepage'),
268268
t('adminboardDetail.provider.email'),
269+
t('adminboardDetail.provider.phone'),
269270
],
270271
body: [
271272
[
@@ -274,6 +275,8 @@ export default function ServiceAdminBoardDetail() {
274275
: serviceData.providerUri,
275276
],
276277
[serviceData?.contactEmail],
278+
// TODO: contactNumber is null atm and causing build failure. Once BE resolve the issue then will un-comment this line
279+
// [serviceData?.contactNumber],
277280
],
278281
}}
279282
horizontal={true}

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,8 @@ export default function ServiceDetails() {
271271
body: [
272272
[fetchServiceStatus?.providerUri],
273273
[fetchServiceStatus?.contactEmail],
274-
[fetchServiceStatus?.contactNumber],
274+
// TODO: contactNumber is null atm and causing build failure. Once BE resolve the issue then will un-comment this line
275+
// [fetchServiceStatus?.contactNumber],
275276
],
276277
}}
277278
horizontal={true}

0 commit comments

Comments
 (0)