Skip to content

Commit

Permalink
fix: 🐛 removed old debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
arctic-hen7 committed Aug 26, 2021
1 parent 1e7e355 commit ed4f43a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/perseus/src/shell.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ pub(crate) async fn fetch(url: &str) -> Result<Option<String>> {
// Get the body thereof
let body_promise = res.text().map_err(js_err_handler)?;
let body = JsFuture::from(body_promise).await.map_err(js_err_handler)?;
web_sys::console::log_1(&JsValue::from(&body));

// Convert that into a string (this will be `None` if it wasn't a string in the JS)
let body_str = body.as_string();
Expand Down

0 comments on commit ed4f43a

Please sign in to comment.