-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Changes - ticket: [] ## Additional Notes - ## Checklist Before requesting a code review, please check the following: - [x] **[Required]** CI has passed all checks. - [x] **[Required]** A self-review has been conducted to ensure there are no minor mistakes. - [x] **[Required]** Unnecessary comments/debugging code have been removed. - [x] **[Required]** All requirements specified in the ticket have been accurately implemented. - [ ] Ensure the ticket has been updated with the sprint, status, and story points.
- Loading branch information
Showing
3 changed files
with
3 additions
and
11 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,7 @@ | ||
import ChatAiWidget, { ChatAiWidgetProps } from './components/widget/ChatAiWidget'; | ||
|
||
const App = (props: ChatAiWidgetProps) => { | ||
return ( | ||
<ChatAiWidget | ||
{...props} | ||
applicationId={'B13D7DE1-7F2B-4343-A896-E812E2BBC67A'} | ||
botId={'onboarding_bot'} | ||
apiHost={'https://api-no2.sendbirdtest.com'} | ||
wsHost={'wss://ws-no2.sendbirdtest.com'} | ||
/> | ||
); | ||
return <ChatAiWidget {...props} />; | ||
}; | ||
|
||
export default App; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters