Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore/fix title text #1472

Merged
merged 2 commits into from
Sep 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>Isomer CMS</title>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why do we not have the space? Isomer and CMS are 2 different words right?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yup, but to be consistent with our comms - see this thread

<title>IsomerCMS</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ const Header = ({
<Box w="180px">
<img
src={`${process.env.PUBLIC_URL}/img/logo.svg`}
alt="Isomer CMS logo"
alt="IsomerCMS logo"
/>
</Box>
) : (
Expand Down
2 changes: 1 addition & 1 deletion src/components/Header/AllSitesHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const AllSitesHeader = (): JSX.Element => {
<Flex w="180px" justifyContent="center">
<Image
src={`${process.env.PUBLIC_URL}/img/logo.svg`}
alt="Isomer CMS logo"
alt="IsomerCMS logo"
/>
</Flex>
<Spacer />
Expand Down
2 changes: 1 addition & 1 deletion src/components/VerifyUserDetailsModal.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ const VerifyUserDetailsModal = () => {
<>
<div>
In order to improve security, a verified email is now required for
all users of Isomer CMS. Only <b>.gov.sg</b> or{" "}
all users of IsomerCMS. Only <b>.gov.sg</b> or{" "}
<b>whitelisted email addresses</b> will be accepted. You must
verify your email before proceeding.{" "}
<Link isExternal href={IDENTITY_GUIDE_LINK}>
Expand Down
Loading