Skip to content

Commit

Permalink
Merge pull request #131 from KelvinTegelaar/dev
Browse files Browse the repository at this point in the history
[pull] dev from KelvinTegelaar:dev
  • Loading branch information
pull[bot] authored Mar 1, 2025
2 parents 4f61491 + a63435a commit ae3fda3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/CippComponents/CippHead.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const CippHead = ({ title }) => {
const tenant = useSettings().currentTenant;
return (
<Head>
<title>{tenant ? `${tenant} - ${title}` : title}</title>
<title>{tenant ? `${title} - ${tenant}` : title}</title>
</Head>
);
};

0 comments on commit ae3fda3

Please sign in to comment.