chore: increase recent rApps in dropdown from 3 to 5

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2026-03-11 14:29:33 -07:00
parent d79d560771
commit 8af5f3d0b6
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ export class RStackAppSwitcher extends HTMLElement {
try { try {
const recent = RStackAppSwitcher.#getRecentModules().filter((x) => x !== id); const recent = RStackAppSwitcher.#getRecentModules().filter((x) => x !== id);
recent.unshift(id); recent.unshift(id);
localStorage.setItem("rspace-recent-modules", JSON.stringify(recent.slice(0, 3))); localStorage.setItem("rspace-recent-modules", JSON.stringify(recent.slice(0, 5)));
} catch {} } catch {}
} }