chore: add space to validator text (#4111)

This commit is contained in:
Kamil Moskała 2024-08-26 17:25:15 +02:00 committed by GitHub
parent ffa5044e23
commit 24c99f03b9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -43,8 +43,8 @@ const MESSAGE = {
}, },
OUTDATED_VERSION: (issueVersion, latestVersion) => { OUTDATED_VERSION: (issueVersion, latestVersion) => {
return ( return (
`There is a newer version of the library available.` + `There is a newer version of the library available. ` +
`You are using version ${issueVersion}, while the latest stable version is ${latestVersion}.` + `You are using version ${issueVersion}, while the latest stable version is ${latestVersion}. ` +
`Please update to the latest version and check if the issue still exists.` + `Please update to the latest version and check if the issue still exists.` +
`\n > Note: If the issue still exists, please update the issue report with the latest information.` `\n > Note: If the issue still exists, please update the issue report with the latest information.`
); );