From 8af5f3d0b6f2179ca3cfad092d811d8f4c01914f Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Wed, 11 Mar 2026 14:29:33 -0700 Subject: [PATCH] chore: increase recent rApps in dropdown from 3 to 5 Co-Authored-By: Claude Opus 4.6 --- shared/components/rstack-app-switcher.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {} }