File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ export const HelpBanner = () => {
3838 const theme = useTheme ( )
3939 const { data : subscriptionData } = useSubscriptionQuery ( )
4040 const hasSubscription = subscriptionData ?. hasSubscription ?? false
41+ const chatGptOAuth = getChatGptOAuthStatus ( )
4142
4243 // Auto-hide after timeout
4344 React . useEffect ( ( ) => {
@@ -79,11 +80,16 @@ export const HelpBanner = () => {
7980 < box style = { { flexDirection : 'column' , gap : 0 } } >
8081 < SectionHeader > Tips</ SectionHeader >
8182 < box style = { { flexDirection : 'column' , paddingLeft : 2 } } >
82- { IS_FREEBUFF && ! getChatGptOAuthStatus ( ) . connected && (
83+ { IS_FREEBUFF && ! chatGptOAuth . connected && (
8384 < text style = { { fg : theme . muted } } >
8485 Connect via /connect to unlock /plan & / review
8586 </ text >
8687 ) }
88+ { IS_FREEBUFF && chatGptOAuth . connected && (
89+ < text style = { { fg : theme . muted } } >
90+ Try workflow: /interview → /plan → implement → /review
91+ </ text >
92+ ) }
8793 < text style = { { fg : theme . muted } } >
8894 Use @ to reference agents to spawn or files to read
8995 </ text >
You can’t perform that action at this time.
0 commit comments