From 24c99f03b9d91c7b8da85423ba7c619480f45657 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20Moska=C5=82a?= <91079590+moskalakamil@users.noreply.github.com> Date: Mon, 26 Aug 2024 17:25:15 +0200 Subject: [PATCH] chore: add space to validator text (#4111) --- .github/scripts/validate.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/scripts/validate.js b/.github/scripts/validate.js index f10ca864c1..19ed2bcc12 100644 --- a/.github/scripts/validate.js +++ b/.github/scripts/validate.js @@ -43,8 +43,8 @@ const MESSAGE = { }, OUTDATED_VERSION: (issueVersion, latestVersion) => { return ( - `There is a newer version of the library available.` + - `You are using version ${issueVersion}, while the latest stable version is ${latestVersion}.` + + `There is a newer version of the library available. ` + + `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.` + `\n > Note: If the issue still exists, please update the issue report with the latest information.` );