We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent daaa28b commit 6b46a58Copy full SHA for 6b46a58
1 file changed
services/web/src/components/bot/MessageParser.jsx
@@ -71,7 +71,10 @@ class MessageParser {
71
) {
72
return this.actionProvider.handleResetContext(this.state.accessToken);
73
} else if (this.state.initializing) {
74
- return this.actionProvider.handleInitialized(message, this.state.accessToken);
+ return this.actionProvider.handleInitialized(
75
+ message,
76
+ this.state.accessToken,
77
+ );
78
} else if (this.state.initializationRequired) {
79
return this.actionProvider.handleNotInitialized();
80
}
0 commit comments