Skip to content

Commit adfc914

Browse files
Qoyyuumdoug-wade
authored andcommitted
Removed TODO handle 404s (#978)
* TODO Get Port Dynamically * Removed TODO note for handling 404
1 parent 3285667 commit adfc914

File tree

1 file changed

+0
-2
lines changed
  • packages/react-server-examples/bike-share/api

1 file changed

+0
-2
lines changed

packages/react-server-examples/bike-share/api/networks.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ export function getNetworks(req, res) {
1414
res.status(200).send(data);
1515
})
1616
.catch(err => {
17-
// TODO handle 404s
1817
res.status(500).send(err);
1918
});
2019
}
@@ -30,7 +29,6 @@ export function getNetwork(req, res) {
3029
res.status(200).send(data);
3130
})
3231
.catch(err => {
33-
// TODO handle 404s
3432
res.status(500).send(err);
3533
});
3634
}

0 commit comments

Comments
 (0)