Fix failing requests (#263)

* Fix a failing request

* Update changelog

* Bump

* Update changelog
This commit is contained in:
Sung Won Cho 2019-10-02 18:54:05 +08:00 committed by GitHub
commit b2d813b2fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 6 deletions

View file

@ -10,9 +10,9 @@ All notable changes to the projects under this repository will be documented in
The following log documentes the history of the server project.
## [Unreleased]
### [Unreleased]
### Changed
#### Changed
- Treat a linebreak as a new line in the preview (#261)
- Allow to have multiple editor states for adding and editing notes (#260)
@ -60,6 +60,12 @@ The following log documentes the history of the CLI project
The following log documentes the history of the browser extensions project
### [Unreleased]
#### Fixed
- Fix failing requests (#263)
### 1.1.0 - 2019-09-30
#### Removed

View file

@ -12,7 +12,7 @@
},
"author": "Monomax Software Pty Ltd",
"license": "GPL-3.0-or-later",
"version": "1.1.0",
"version": "1.1.1",
"dependencies": {
"classnames": "^2.2.5",
"lodash": "^4.17.15",

View file

@ -163,9 +163,7 @@ const Composer: React.FunctionComponent<Props> = () => {
return () => {
window.removeEventListener('keydown', handleSubmitShortcut);
};
}, []);
useEffect(() => {}, []);
}, [composer]);
let submitBtnText: string;
if (submitting) {