Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 57 additions & 0 deletions .codesandbox/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
{
// These tasks will run in order when initializing your CodeSandbox project.
"setupTasks": [
{
"command": "yarn install",
"name": "Installing Dependencies"
},
{
"command": "yarn dev",
"name": "yarn dev"
}
],

// These tasks can be run from CodeSandbox. Running one will open a log in the app.
"tasks": {
"preinstall": {
"name": "preinstall",
"command": "yarn preinstall",
"runAtStart": false
},
"postinstall": {
"name": "postinstall",
"command": "yarn postinstall",
"runAtStart": false
},
"build": {
"name": "build",
"command": "yarn build",
"runAtStart": false
},
"lint": {
"name": "lint",
"command": "yarn lint",
"runAtStart": false
},
"build:storybook": {
"name": "build:storybook",
"command": "yarn build:storybook",
"runAtStart": false
},
"format": {
"name": "format",
"command": "yarn format",
"runAtStart": false
},
"format:check": {
"name": "format:check",
"command": "yarn format:check",
"runAtStart": false
},
"prepare": {
"name": "prepare",
"command": "yarn prepare",
"runAtStart": false
}
}
}
2 changes: 1 addition & 1 deletion packages/react/src/views/ChatInput/ChatInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ const ChatInput = ({ scrollToBottom, clearUnreadDividerRef }) => {
typingRef.current = true;
timerRef.current = setTimeout(() => {
typingRef.current = false;
}, [15000]);
}, 15000);
await RCInstance.sendTypingStatus(username, true);
} else {
clearTimeout(timerRef.current);
Expand Down