From 423ac81d1d8291868216afc2616c4486f4ae08da Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Fri, 25 Sep 2020 14:57:12 -0400 Subject: [PATCH] fix lint Signed-off-by: Sebastian Malton --- src/renderer/components/+namespaces/namespace.store.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/components/+namespaces/namespace.store.tsx b/src/renderer/components/+namespaces/namespace.store.tsx index b81c25eb45..268a6b5095 100644 --- a/src/renderer/components/+namespaces/namespace.store.tsx +++ b/src/renderer/components/+namespaces/namespace.store.tsx @@ -120,7 +120,7 @@ export class NamespaceStore extends KubeObjectStore { async remove(item: Namespace) { await super.remove(item); - this.contextNs.remove(item.getName()); + this.contextNs.delete(item.getName()); } }