|
|
|
@ -21,12 +21,12 @@ export const PublicDashboardNotAvailable = ({ paused }: { paused?: boolean }) => |
|
|
|
<Branding.LoginLogo className={loginStyles.loginLogo} /> |
|
|
|
<Branding.LoginLogo className={loginStyles.loginLogo} /> |
|
|
|
<p className={styles.title} data-testid={selectors.title}> |
|
|
|
<p className={styles.title} data-testid={selectors.title}> |
|
|
|
{paused |
|
|
|
{paused |
|
|
|
? 'The dashboard has been temporarily paused by the administrator.' |
|
|
|
? 'This dashboard has been paused by the administrator' |
|
|
|
: 'The dashboard your are trying to access does not exist.'} |
|
|
|
: 'The dashboard your are trying to access does not exist'} |
|
|
|
</p> |
|
|
|
</p> |
|
|
|
{paused && ( |
|
|
|
{paused && ( |
|
|
|
<p className={styles.description} data-testid={selectors.pausedDescription}> |
|
|
|
<p className={styles.description} data-testid={selectors.pausedDescription}> |
|
|
|
Please check again soon. |
|
|
|
Try again later |
|
|
|
</p> |
|
|
|
</p> |
|
|
|
)} |
|
|
|
)} |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|