Update persistence state to track counts of messages instead of times banner has been displayed (#13428)

This commit is contained in:
Adib234
2025-11-20 13:57:06 -08:00
committed by GitHub
parent 9937fb2220
commit 3e50be1658
5 changed files with 234 additions and 29 deletions

View File

@@ -11,7 +11,7 @@ import * as path from 'node:path';
const STATE_FILENAME = 'state.json';
interface PersistentStateData {
defaultBannerShownCount?: number;
defaultBannerShownCount?: Record<string, number>;
// Add other persistent state keys here as needed
}