refactor: remove unused home tab - #167
Merged
Merged
Conversation
Remove the home tab from the entire tab system. It was only rendering a placeholder view and is not needed. - Remove 'home' from TabType, SINGLETON_TAB_TYPES, TAB_ICONS, TAB_PATHS - Remove Home sidebar nav entry and SidebarHome SVG icon - Remove case 'home' from tab-content routing - Remove 'home' from BasePage type and all Record<AppPage, ...> maps - Remove 'home' from tab-icon TYPE_TO_ICON mapping - Renumber sidebar shortcuts (Journal → ⌘⌥2, Tasks → ⌘⌥3) - Update test fixtures and e2e comments
h4yfans
added a commit
that referenced
this pull request
May 6, 2026
refactor: remove unused home tab
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Remove the unused Home tab from the entire tab system — it only rendered a placeholder view.
Why
The Home tab was never implemented beyond a placeholder. Removing dead code keeps the codebase lean and avoids confusion about which navigation items are functional.
How
Surgical removal across 9 source files:
'home'fromTabTypeunion,SINGLETON_TAB_TYPES, icon/path mappingsSidebarHomeSVG icon and sidebar nav entrycase 'home':from tab content routing'home'fromBasePagetype and allRecord<AppPage, ...>mapsKept unrelated
Homereferences: Lucide icon (icon-picker), keyboard Home key (list navigation), English prose in seed data.Type
feat— new featurefix— bug fixrefactor— restructure without behavior changestyle— visual/UI onlyperf— performance improvementtest— adding or updating testschore— tooling, deps, configdocs— documentation onlyci— CI/CD changesTest plan
TypeScript compiles clean (5/5 packages). ESLint passes (0 errors). Removed
'home'from tab-hover-preview test fixture.Checklist