Skip to content

Commit

Permalink
fix message part 3
Browse files Browse the repository at this point in the history
  • Loading branch information
devksingh4 committed Sep 11, 2024
1 parent af72bbc commit aa4aaef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clientv2/src/components/SearchProfiles/Results.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export const ProfileSearchResults: React.FC<ProfileSearchResultsProp> = ({ data
notifications.show({
title: `Error downloading ${partial ? 'some' : ''} resumes`,
color: numErrored ? 'yellow' : 'red',
message: `There was an error downloading ${numErrored ? numErrored.toString() : 'the selected'} resumes. These profiles likely don't have resumes.`,
message: `There was an error downloading resumes for ${numErrored ? numErrored.toString() : 'the selected'} profiles. These profiles likely don't have resumes.`,
});
};
const massDownloadSuccessNotification = (numSuccess: number) => {
Expand Down

0 comments on commit aa4aaef

Please sign in to comment.