-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Nick Grato
committed
Nov 9, 2023
1 parent
71918b6
commit f2a474d
Showing
4 changed files
with
21 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ import FeedbackBanner from '@Shared/FeedbackBanner/FeedbackBanner'; | |
import SkeletonCard from '@Shared/SkeletonCard/SkeletonCard'; | ||
import { SubscriptionT } from 'services/subscription.service'; | ||
import Hub, { loadingHub } from 'classes/Hub'; | ||
import Warning from '@Shared/Warning/Warning'; | ||
|
||
type SidePanelLayoutProps = { | ||
children: ReactNode; | ||
|
@@ -27,6 +28,17 @@ const SidePanelLayout = ({ | |
|
||
return ( | ||
<> | ||
<div className="flex-justify-center mt-20 px-20"> | ||
<div className={styles.warning}> | ||
<Warning | ||
title="Be Advised" | ||
message="We are aware of an outage currently impacting Starter and Personal plans in one of our service regions. If your assigned URL contains 'us1' you may be affected by this outage. Our team is actively working to resolve the issue, and we appreciate your patience. We apologize for any inconvenience this may cause. If you have any questions regarding this issue, please contact us," | ||
onClick={() => { | ||
window.open('mailto:[email protected]'); | ||
}} | ||
/> | ||
</div> | ||
</div> | ||
<section className={styles.layout_wrapper}> | ||
{children} | ||
{/* SIDE PANEL WIDGET */} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -157,16 +157,6 @@ const Dashboard = ({ subscription }: DashboardPropsT) => { | |
subscription={subscription} | ||
isLoading={isLoading && Boolean(account.planName)} | ||
> | ||
<div className={styles.warning}> | ||
<Warning | ||
title="Be Advised" | ||
message="We are aware of an outage currently impacting Starter and Personal plans in one of our service regions. If your assigned URL contains 'us1' you may be affected by this outage. Our team is actively working to resolve the issue, and we appreciate your patience. We apologize for any inconvenience this may cause. If you have any questions regarding this issue, please contact us," | ||
onClick={() => { | ||
window.open('mailto:[email protected]'); | ||
}} | ||
/> | ||
</div> | ||
|
||
<div className={styles.cards_wrapper}> | ||
{/* Hub Creating */} | ||
{/* TODO (Tech Debt): Right now (EA) we are only dealing with one hub, so, if there are zero | ||
|