Skip to content

Commit

Permalink
Merge pull request #1041 from CruGlobal/8175-reset-flows-warning
Browse files Browse the repository at this point in the history
[MPDX-8175] Tweak reset flows warning message
  • Loading branch information
canac authored Sep 10, 2024
2 parents 692c5cd + ad85a3d commit 0f2c06b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ describe('ResetToDefaultModal', () => {

expect(
getByText(
'Resetting to default will change the columns back to the five phases of MPD. Are you sure you want to revert to the default columns?',
'Resetting to default will change the columns back to the five phases of MPD. Any customizations you have made will be lost. Are you sure you want to revert to the default columns?',
),
).toBeInTheDocument();
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export const ResetToDefaultModal: React.FC<ResetToDefaultModalProps> = ({
<DialogContent dividers>
<FormControl fullWidth>
<Typography>
{t('Pick a list to use for your newsletter')}
{t('Pick a default set of columns to use')}
</Typography>
<Select
name="resetToDefaultType"
Expand All @@ -116,7 +116,7 @@ export const ResetToDefaultModal: React.FC<ResetToDefaultModalProps> = ({

<Alert severity="warning" style={{ marginTop: '15px' }}>
{t(
'Resetting to default will change the columns back to the five phases of MPD. Are you sure you want to revert to the default columns?',
'Resetting to default will change the columns back to the five phases of MPD. Any customizations you have made will be lost. Are you sure you want to revert to the default columns?',
)}
</Alert>
</FormControl>
Expand Down

0 comments on commit 0f2c06b

Please sign in to comment.