File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -9,14 +9,14 @@ export const ChatbotPromptSettingsKeys = {
99 InitialPrompt : 'initialPrompt' ,
1010 ChatbotCue : 'chatbotCue' ,
1111 ChatbotName : 'chatbotName' ,
12- starterSuggestions : 'starterSuggestions' ,
12+ StarterSuggestions : 'starterSuggestions' ,
1313} as const ;
1414
1515export type ChatbotPromptSettings = {
1616 [ ChatbotPromptSettingsKeys . InitialPrompt ] : string ;
1717 [ ChatbotPromptSettingsKeys . ChatbotCue ] : string ;
1818 [ ChatbotPromptSettingsKeys . ChatbotName ] : string ;
19- [ ChatbotPromptSettingsKeys . starterSuggestions ] : string [ ] ;
19+ [ ChatbotPromptSettingsKeys . StarterSuggestions ] : string [ ] ;
2020 // used to allow access using settings[settingKey] syntax
2121 // [key: string]: unknown;
2222} ;
Original file line number Diff line number Diff line change @@ -61,6 +61,7 @@ function StarterSuggestions({
6161 </ IconButton >
6262 </ Stack >
6363 ) ) }
64+ { /* the span is used to prevent full width button */ }
6465 < span >
6566 < Button
6667 startIcon = { < PlusIcon /> }
You can’t perform that action at this time.
0 commit comments