diff --git a/shared/components/rstack-app-switcher.ts b/shared/components/rstack-app-switcher.ts index 1029db7..2c5ab96 100644 --- a/shared/components/rstack-app-switcher.ts +++ b/shared/components/rstack-app-switcher.ts @@ -140,7 +140,7 @@ export class RStackAppSwitcher extends HTMLElement { try { const recent = RStackAppSwitcher.#getRecentModules().filter((x) => x !== 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 {} }