Commit 8255bd8a authored by peterhegman's avatar peterhegman

Remove unneeded escape from `sprintf`

parent aa5144a9
......@@ -3,7 +3,7 @@ import { __, sprintf } from '~/locale';
export default address => {
if (!validateIpAddress(address)) {
return sprintf(__('%{address} is an invalid IP address range'), { address }, false);
return sprintf(__('%{address} is an invalid IP address range'), { address });
}
return '';
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment