Skip to content

Commit

Permalink
Add page title to waiting rooms
Browse files Browse the repository at this point in the history
  • Loading branch information
soof-golan committed Oct 22, 2024
1 parent b940439 commit a555af2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/renderer/_default.page.server.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async function render(pageContext: PageContextServer) {

// See https://vite-plugin-ssr.com/head
const { documentProps } = pageContext.exports;
const title = (documentProps && documentProps.title) || "Waiting Room";
const title = "Waiting Room" + " | " + ((pageProps && pageProps.title) || "");
const desc =
(documentProps && documentProps.description) ||
"Let users wait in a virtual waiting room, without suffering";
Expand Down

0 comments on commit a555af2

Please sign in to comment.