Skip to content

Commit

Permalink
bugfix(notification): fix go to use case link issue (#186)
Browse files Browse the repository at this point in the history
  • Loading branch information
manojava-gk authored Aug 3, 2023
1 parent f901264 commit 8b741a3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/assets/locales/de/notification.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
"home": "Zur Startseite",
"app": "Zur App",
"user": "Zum Benutzer",
"usecases": "Zu den Use Cases",
"usecase": "Zu den Use Case",
"serviceprovider": "Go to service provider",
"appmanagementboard": "App Management Board öffnen",
"servicemanagementboard": "Service Management Board öffnen",
Expand Down
2 changes: 1 addition & 1 deletion src/assets/locales/en/notification.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
"home": "Go to home page",
"app": "Go to app",
"user": "Go to user",
"usecases": "Go to use cases",
"usecase": "Go to Use Case",
"serviceprovider": "Go to service provider",
"appmanagementboard": "Get there",
"servicemanagementboard": "Get there",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ const NotificationConfig = ({ item }: { item: CXNotificationContent }) => {
case NotificationType.WELCOME_CONNECTOR_REGISTRATION:
return <NotificationContent item={item} navlinks={['technicalsetup']} />
case NotificationType.WELCOME_USE_CASES:
return <NotificationContent item={item} navlinks={['usecases']} />
return <NotificationContent item={item} navlinks={['usecase']} />
case NotificationType.WELCOME_SERVICE_PROVIDER:
return (
<NotificationContent
Expand Down

0 comments on commit 8b741a3

Please sign in to comment.