Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
freddyaboulton committed Oct 12, 2022
1 parent a1a36fb commit 77a208d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ No changes to highlight.
* Automatically restart spaces if they're down by [@aliabd](https://github.com/aliabd) in [PR 2405](https://github.com/gradio-app/gradio/pull/2405)
* Carousel component is now deprecated by [@abidlabs](https://github.com/abidlabs) in [PR 2434](https://github.com/gradio-app/gradio/pull/2434)
* Build Gradio from source in ui tests by by [@freddyaboulton](https://github.com/freddyaboulton) in [PR 2440](https://github.com/gradio-app/gradio/pull/2440)
* Enable running events to be cancelled from other events by [@freddyaboulton](https://github.com/freddyaboulton) in [PR 2433](https://github.com/gradio-app/gradio/pull/2433)

## Contributors Shoutout:
No changes to highlight.
Expand Down
14 changes: 6 additions & 8 deletions ui/packages/app/src/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,14 +156,12 @@ export const fn =
send_message(fn_index, payload);
break;
case "send_hash":
ws_map
.get(fn_index)
?.send(
JSON.stringify({
session_hash: session_hash,
fn_index: fn_index
})
);
ws_map.get(fn_index)?.send(
JSON.stringify({
session_hash: session_hash,
fn_index: fn_index
})
);
break;
case "queue_full":
loading_status.update(
Expand Down

0 comments on commit 77a208d

Please sign in to comment.