()
| 344 | } |
| 345 | |
| 346 | function readCachedStars() { |
| 347 | try { |
| 348 | const cached = JSON.parse(localStorage.getItem(GITHUB_STARS_CACHE_KEY) || 'null'); |
| 349 | if (cached && typeof cached.count === 'number') return cached; |
| 350 | } catch { |
| 351 | /* ignore unreadable cache */ |
| 352 | } |
| 353 | return null; |
| 354 | } |
| 355 | |
| 356 | function WelcomeBlock() { |
| 357 | const dark = useTheme().palette.mode === 'dark'; |