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

fix(SILVA-554): removing notification from landing page #433

Merged
merged 1 commit into from
Oct 30, 2024
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 frontend/openshift.deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ objects:
- name: LOG_LEVEL
value: "${LOG_LEVEL}"
- name: VITE_BACKEND_URL
value: "https://${NAME}-${ZONE}-backend.${DOMAIN}:443"
value: "https://${NAME}-${ZONE}-backend.${DOMAIN}"
- name: VITE_USER_POOLS_WEB_CLIENT_ID
value: "${VITE_USER_POOLS_WEB_CLIENT_ID}"
- name: VITE_ZONE
Expand Down
31 changes: 0 additions & 31 deletions frontend/src/screens/Landing/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,37 +39,6 @@ const Landing: React.FC = () => {
<BCGovLogo />
</div>

<div className="">
<InlineNotification
icondescription="describes the close button"
subtitle="See the release notes to find out what's new"
title="New Release!"
kind="info"
lowContrast
className = "inline-notification"
/>
</div>
<div className="">
<InlineNotification
icondescription="describes the close button"
subtitle="SILVA will be offline for up to 4 hours time starting on June 30, 2023 at 9:00pm"
title="Upcoming maintenance"
kind="warning"
lowContrast
className = "inline-notification"
/>
</div>
<div className="">
<InlineNotification
icondescription="describes the close button"
subtitle="SILVA is expected to come back online on July 1, 2023 at 11:11am"
title="SILVA is down"
kind="error"
lowContrast
className = "inline-notification"
/>
</div>

{/* Welcome - Title and Subtitle */}
<div className="mt-5">
<h1 data-testid="landing-title" className="landing-title">Welcome to SILVA</h1>
Expand Down
Loading