Skip to content

Commit

Permalink
Move “Playroom” to end of tab title
Browse files Browse the repository at this point in the history
  • Loading branch information
felixhabib committed Feb 1, 2024
1 parent 1f9198c commit ca04a17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Playroom/SettingsPanel/SettingsPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,13 @@ const KeyboardShortcut = ({

const getTitle = (localTitle: string | undefined) => {
if (localTitle) {
return `Playroom | ${localTitle}`;
return `${localTitle} | Playroom`;
}

const configTitle = window?.__playroomConfig__.title;

if (configTitle) {
return `Playroom | ${configTitle}`;
return `${configTitle} | Playroom`;
}

return 'Playroom';
Expand Down

0 comments on commit ca04a17

Please sign in to comment.