Skip to content

Commit

Permalink
Tweak reset warning message
Browse files Browse the repository at this point in the history
  • Loading branch information
canac committed Sep 9, 2024
1 parent 85d6439 commit ad85a3d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 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 @@ -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 ad85a3d

Please sign in to comment.