From e3b891e6363f07e4153ce8c00f217b64049f6f7c Mon Sep 17 00:00:00 2001 From: smartfrigde <37928912+smartfrigde@users.noreply.github.com> Date: Mon, 23 May 2022 16:08:26 +0200 Subject: [PATCH] Correct the version in AC internals --- src/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.ts b/src/utils.ts index e331a96..77c0951 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -52,7 +52,7 @@ export function setup() { export function getVersion() { //to-do better way of doing this - return "3.1.0"; + return "3.0.6"; } export async function injectJS(inject: string) { const js = await (await fetch(`${inject}`)).text();