Skip to content

Commit a26f6ef

Browse files
author
kim
committed
refactor: fix PR requested changes
1 parent 99e1b49 commit a26f6ef

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/config/appSetting.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

1515
export 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
};

src/modules/settings/chatbot/StarterSuggestions.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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 />}

0 commit comments

Comments
 (0)