From 84924b636475167b30c054ca2cb2db1b11661e5a Mon Sep 17 00:00:00 2001 From: FlorianZahn Date: Wed, 6 Oct 2021 08:29:45 +0200 Subject: [PATCH 1/3] Update SkipNoticeComponent.tsx --- src/components/SkipNoticeComponent.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/SkipNoticeComponent.tsx b/src/components/SkipNoticeComponent.tsx index fefa5040..eca8ee23 100644 --- a/src/components/SkipNoticeComponent.tsx +++ b/src/components/SkipNoticeComponent.tsx @@ -545,7 +545,7 @@ class SkipNoticeComponent extends React.Component Date: Wed, 6 Oct 2021 08:31:18 +0200 Subject: [PATCH 2/3] Update config.ts --- src/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.ts b/src/config.ts index b1fc1070..8390b393 100644 --- a/src/config.ts +++ b/src/config.ts @@ -123,7 +123,7 @@ class SBMap extends Map { addArray(key: T, value: U) { // Expand an array by value - let result = super.get(key).concat(value); + const result = super.get(key).concat(value); this.set(key, result); this.update(); return result; From 988905c15500e22c28bfb8c3cfe48708ae848023 Mon Sep 17 00:00:00 2001 From: FlorianZahn Date: Wed, 6 Oct 2021 16:33:11 +0200 Subject: [PATCH 3/3] Update config.ts --- src/config.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/config.ts b/src/config.ts index 8390b393..5d8a58e4 100644 --- a/src/config.ts +++ b/src/config.ts @@ -120,14 +120,6 @@ class SBMap extends Map { this.update(); return result; } - - addArray(key: T, value: U) { - // Expand an array by value - const result = super.get(key).concat(value); - this.set(key, result); - this.update(); - return result; - } delete(key) { const result = super.delete(key);