Skip to content

Commit

Permalink
changed warnings for singular and plural
Browse files Browse the repository at this point in the history
  • Loading branch information
danielshid committed Dec 3, 2024
1 parent 2a94c4f commit be0272d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export default function EditConversionModalComponent(props: EditConversionModalC
if (count === 1) {
msg += `Deleting this meter conversion will orphan ${unitDataById[state.destinationId].name}.\n`;
} else {
msg += 'Deleting this meter conversion will make the following meters ungraphable:\n';
msg += 'Deleting this meter conversion will make the following meter(s) ungraphable:\n';
for (const meterId of Object.values(meterDataById)) {
if (meterId.unitId == source.id) {
msg += `${meterId.name}\n`;
Expand Down

0 comments on commit be0272d

Please sign in to comment.