fix(app): remove starter chips from new-session view (amicode#269) - #150
Merged
jeonghun-jj-lee merged 1 commit intoAug 9, 2026
Merged
Conversation
The recommended action buttons on the chat homepage were not useful — static/semi-dynamic chips that the agent's onset router (a personalized question card at session start) already replaces. - Remove the gettingStarted prop from NewSessionView and the <Show> block that rendered the chips - Remove the chips memo, resumeProblem resource, and all imports that only fed chip ranking (AmicodeStarterChips, AMICODE_STARTERS, StarterChip, parseProblemsResponse, amicodeGet, useServer, usePrompt, startPrompt) - Leave component files (getting-started.tsx, re-export shim) intact — the legacy session-new-view.tsx still references them New-session landing becomes: brand mark → wordmark → composer → project selector. The onset router's personalized question card is the sole suggestion surface.
jeonghun-jj-lee
force-pushed
the
amico/issue-269-remove-starter-chips
branch
from
August 9, 2026 02:58
d6a6e12 to
64845dd
Compare
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.
Summary
Removes the static/semi-dynamic recommended action buttons from the new-session landing page. The agent's onset router (a personalized
questioncard at session start) is the suggestion surface; the chips added visual noise without useful tailoring.Changes
new-session-view.tsx: Removed thegettingStartedprop and its<Show>render blocknew-session.tsx: Removed thechipsmemo,resumeProblemresource, and all imports that only fed chip ranking (AmicodeStarterChips,AMICODE_STARTERS,StarterChip,parseProblemsResponse,amicodeGet,useServer,usePrompt,startPrompt)Result
New-session landing: brand mark → wordmark → composer → project selector. No unused chrome.
Not touched
Component files (
getting-started.tsx, re-export shim) remain — the legacysession-new-view.tsxstill imports them. Dead-code cleanup is a separate pass.Closes harmoniqs/amicode#269