Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove message code from prototyping phase #151

Merged
merged 3 commits into from
Oct 11, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ with the current date and the next changes should go under a **[Next]** header.
## [Next]

* Fix queues and course sorting. ([@genevievehelsel](https://github.com/genevievehelsel) in [#150](https://github.com/illinois/queue/pull/150))
* Remove message code from API prototyping phase. ([@nwalters512](https://github.com/nwalters512) in [#151](https://github.com/illinois/queue/pull/151))

## 10 October 2018

Expand Down
1 change: 0 additions & 1 deletion src/components/QueueStatusToggle.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ class QueueStatusToggle extends React.Component {
toggleQueueStatus() {
const attributes = {
open: !this.props.queue.open,
message: this.props.queue.open ? 'Closed' : 'Open',
}
this.props.updateQueue(this.props.queue.id, attributes)
}
Expand Down