Skip to content

Commit

Permalink
Fix RunLLM integration's default value for disable-ask-a-person (#542)
Browse files Browse the repository at this point in the history
Fix disable-ask-a-person
  • Loading branch information
likawind authored Sep 13, 2024
1 parent 2eb0ffa commit ff0dbfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integrations/runllm-widget/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const handleFetchEvent: FetchPublishScriptEventCallback = async (
const keyboardShortcut = config?.keyboard_shortcut ?? '';
const communityType = config?.community_type ?? '';
const communityUrl = config?.community_url ?? '';
const disableAskAPerson = config?.disable_ask_a_person ? 'true' : '';
const disableAskAPerson = config?.disable_ask_a_person ? 'false' : '';

return new Response(
script
Expand Down

0 comments on commit ff0dbfa

Please sign in to comment.