Skip to content

Commit

Permalink
Fix for page title space issue
Browse files Browse the repository at this point in the history
  • Loading branch information
CodewithKoushica committed Jan 17, 2025
1 parent a14cdc5 commit d1814b8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function UpdateDocumentTitle() {
{ pattern: /^\/project\/members\/[^/]+$/, title: 'Project Members' },
{ pattern: /^\/timelog\/?$/, title: `Timelog - ${fullName}` },
{ pattern: /^\/timelog\/[^/]+$/, title: `Timelog - ${fullName}` },
{ pattern: /^\/peoplereport\/[^/]+$/, title: `People Report- ${fullName}` },
{ pattern: /^\/peoplereport\/[^/]+$/, title: `People Report - ${fullName}` },
{ pattern: /^\/projectreport\/[^/]+$/, title: 'Project Report' },
{ pattern: /^\/teamreport\/[^/]+$/, title: 'Team Report' },
{ pattern: /^\/taskeditsuggestions$/, title: 'Task Edit Suggestions' },
Expand Down Expand Up @@ -110,8 +110,8 @@ function UpdateDocumentTitle() {
{ pattern: /^\/email-subscribe$/, title: 'Email Subscribe' },
{ pattern: /^\/email-unsubscribe$/, title: 'Unsubscribe' },
{ pattern: /^\/infoCollections$/, title: 'Info Collections' },
{ pattern: /^\/userprofile\/[^/]+$/, title: `User Profile- ${fullName}` },
{ pattern: /^\/userprofileedit\/[^/]+$/, title: `Edit User Profile- ${fullName}` },
{ pattern: /^\/userprofile\/[^/]+$/, title: `User Profile - ${fullName}` },
{ pattern: /^\/userprofileedit\/[^/]+$/, title: `Edit User Profile - ${fullName}` },
{ pattern: /^\/updatepassword\/[^/]+$/, title: 'Update Password' },
{ pattern: /^\/Logout$/, title: 'Logout' },
{ pattern: /^\/forcePasswordUpdate\/[^/]+$/, title: 'Force Password Update' },
Expand Down

0 comments on commit d1814b8

Please sign in to comment.