[WEB-2040] fix: text updates (#5221)

* fix: text updates

* fix: page title

* fix: icon color

* fix: Page title changes
This commit is contained in:
Akshita Goyal 2024-07-24 20:30:52 +05:30 committed by GitHub
parent 3f87d8b99d
commit d1828c9496
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 21 additions and 19 deletions

View file

@ -33,7 +33,7 @@ const WorkspaceDashboardPage = observer(() => {
} = useUser();
const { setPeekIssue } = useIssueDetail();
// derived values
const pageTitle = currentWorkspace?.name ? `${currentWorkspace?.name} - Notifications` : undefined;
const pageTitle = currentWorkspace?.name ? `${currentWorkspace?.name} - Inbox` : undefined;
const { workspace_slug, project_id, issue_id, is_inbox_issue } =
notificationLiteByNotificationId(currentSelectedNotificationId);