(tab: Tab)
| 268 | }, |
| 269 | select: navigateTab, |
| 270 | remember(tab: Tab) { |
| 271 | const key = tabKey(tab) |
| 272 | if (recentKey() !== key) setRecentKey(key) |
| 273 | }, |
| 274 | toggleHome(input: { home: boolean; current?: Tab }) { |
| 275 | if (input.home) { |
| 276 | const tab = store.find((tab) => tabKey(tab) === recentKey()) |
nothing calls this directly
no test coverage detected