decreased refresh time to a minute

This commit is contained in:
Harish Vishwakarma
2024-10-25 12:05:13 +05:30
parent ffe8bf1db2
commit e0f849c715

View File

@@ -55,7 +55,7 @@ interface CachedData {
}
const CACHE_KEY = "server_list_cache";
const CACHE_DURATION = 15 * 60 * 1000; // 15 minutes in milliseconds
const CACHE_DURATION = 1 * 60 * 1000; // 1 minutes in milliseconds
// Safe localStorage wrapper
const safeStorage = {