From 8113ed3c8cbc8894607b7d4ed6d5bb770f1a345e Mon Sep 17 00:00:00 2001 From: Vendicated Date: Sat, 7 Jan 2023 03:19:28 +0100 Subject: Fix canary --- src/webpack/common.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/webpack/common.tsx') diff --git a/src/webpack/common.tsx b/src/webpack/common.tsx index a732d6b..9024ff9 100644 --- a/src/webpack/common.tsx +++ b/src/webpack/common.tsx @@ -191,7 +191,7 @@ waitFor(m => m.Types?.INPUT_PLACEHOLDER, m => Forms.FormText = m); waitFor(m => { if (typeof m !== "function") return false; const s = m.toString(); - return s.length < 200 && s.includes("().divider"); + return s.length < 200 && s.includes(".divider"); }, m => Forms.FormDivider = m); // This is the same module but this is easier -- cgit