feat(admin): prompt user to restart the CLI if they change auth to oauth mid-session or don't have auth type selected at start of session (#16426)

This commit is contained in:
Shreya Keshive
2026-01-12 15:39:08 -05:00
committed by GitHub
parent 2306e60be4
commit d65eab01d2
10 changed files with 207 additions and 2 deletions
@@ -56,6 +56,7 @@ export interface UIActions {
handleApiKeyCancel: () => void;
setBannerVisible: (visible: boolean) => void;
setEmbeddedShellFocused: (value: boolean) => void;
setAuthContext: (context: { requiresRestart?: boolean }) => void;
}
export const UIActionsContext = createContext<UIActions | null>(null);