From 1573c88b47b79e0bc1d7579f4be84bf4d94effb8 Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Tue, 28 Jul 2020 06:37:19 -0600 Subject: [PATCH] Update src/utils/arrays.ts Co-authored-by: Michael Telatynski <7t3chguy@gmail.com> --- src/utils/arrays.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/arrays.ts b/src/utils/arrays.ts index ea29ad182a..fa5515878f 100644 --- a/src/utils/arrays.ts +++ b/src/utils/arrays.ts @@ -55,7 +55,7 @@ export function arrayHasDiff(a: any[], b: any[]): boolean { if (a.some(i => !b.includes(i))) return true; // if all the keys are common, say so - return false + return false; } else { return true; // different lengths means they are naturally diverged }