Make config non optional in ToolConfirmationMessage (#7083)

This commit is contained in:
shrutip90 2025-08-26 10:02:22 -07:00 committed by GitHub
parent 52dae2c583
commit 4e49ee4c73
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 17 additions and 7 deletions

View file

@ -29,7 +29,7 @@ interface HistoryItemDisplayProps {
availableTerminalHeight?: number;
terminalWidth: number;
isPending: boolean;
config?: Config;
config: Config;
isFocused?: boolean;
commands?: readonly SlashCommand[];
}