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

Add RC message #1105

Merged
merged 4 commits into from
Sep 30, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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 src/components/Reports/EmptyReport/EmptyReport.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {

export const Default = (): ReactElement => (
<EmptyReport
title="You have received no donations in the last thirteen months"
title="You have received no donations in the last fourteen months"
subTitle="You can setup an organization account to import them or add a new donation."
/>
);
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export const FourteenMonthReport: React.FC<Props> = ({
) : (
<EmptyReport
title={t(
'You have received no donations in the last thirteen months',
'You have received no donations in the last fourteen months',
)}
subTitle={t(
'You can setup an organization account to import them or add a new donation.',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
import React, { useMemo } from 'react';
import { Box, CircularProgress, Divider, Typography } from '@mui/material';
import {
Alert,
Box,
CircularProgress,
Divider,
Typography,
} from '@mui/material';
import { styled } from '@mui/material/styles';
import { useTranslation } from 'react-i18next';
import { Notification } from 'src/components/Notification/Notification';
Expand Down Expand Up @@ -207,6 +213,11 @@ export const ResponsibilityCentersReport: React.FC<Props> = ({
/>
) : (
<ScrollBox data-testid="ResponsibilityCentersScrollBox">
<Alert severity="warning">
{t(
'Responsibility Centers is still in development. Some features are not working. Please check back later.',
caleballdrin marked this conversation as resolved.
Show resolved Hide resolved
)}
</Alert>
<Divider />
{financialAccountsGroups?.map((financialAccountGroup) => {
const accounts: Account[] =
Expand Down
Loading