From e203027f68371264c75810d8222cad5b38805cf4 Mon Sep 17 00:00:00 2001 From: ful1e5 <24286590+ful1e5@users.noreply.github.com> Date: Fri, 21 Aug 2020 18:34:47 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A3=20regex=20fix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/round/src/helpers/schema.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/round/src/helpers/schema.ts b/packages/round/src/helpers/schema.ts index 62310997..40e0de0d 100644 --- a/packages/round/src/helpers/schema.ts +++ b/packages/round/src/helpers/schema.ts @@ -37,7 +37,7 @@ const generateConfigs = (colorSchemes: ColorSchema, dirPrefix: string) => { content = content .replace(new RegExp(baseKeyColor, "g"), base) - .replace(new RegExp(outlineKeyColor), outline); + .replace(new RegExp(outlineKeyColor, "g"), outline); // Save Schema const cursorPath = path.resolve(schemaSvgsPath, cursor);