Skip to content

Commit

Permalink
Fix website name not used in header title
Browse files Browse the repository at this point in the history
  • Loading branch information
limdingwen committed Aug 1, 2024
1 parent 7e313b5 commit eed6c13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion site/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default function RootLayout({
children: React.ReactNode;
}) {
const defaultColorScheme = "auto";
const logo = <Text>Parliament Summary</Text>;
const logo = <Text>{process.env.NEXT_PUBLIC_SITE_NAME}</Text>;
const links = [
{ name: "Bills", href: "/bills" },
{ name: "Debates", href: "/debates" },
Expand Down

0 comments on commit eed6c13

Please sign in to comment.