Fix console log error

This commit is contained in:
2020-07-09 22:09:56 -05:00
parent c5d3472721
commit 4627f5bdc5

View File

@@ -23,7 +23,7 @@ const Home = () => {
history.push("/run/" + response.data.createRun.id); history.push("/run/" + response.data.createRun.id);
} }
catch (err) { catch (err) {
console.log('error creating todo:', err) console.log('error creating run:', err)
} }
} }