From d111fb033eb76ba807223f47d92876b92f98c31e Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Fri, 29 Sep 2017 22:33:57 -0400 Subject: [PATCH] Changes reset to remove keys --- src/commands/resetSuppressedWarnings.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/resetSuppressedWarnings.ts b/src/commands/resetSuppressedWarnings.ts index 15b4b13..b8f2408 100644 --- a/src/commands/resetSuppressedWarnings.ts +++ b/src/commands/resetSuppressedWarnings.ts @@ -12,7 +12,7 @@ export class ResetSuppressedWarningsCommand extends Command { async execute() { for (const key of Objects.values(SuppressedKeys)) { - await this.context.globalState.update(key, false); + await this.context.globalState.update(key, undefined); } } } \ No newline at end of file