Skip to content

Commit

Permalink
remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
fritz-astronomer committed Jun 7, 2024
1 parent 69a56ee commit ce76566
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions astronomer_starship/src/pages/TelescopePage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ export default function TelescopePage({ state, dispatch }) {
setRoute(_route);
const _filename = `${state.telescopeOrganizationId}.${(new Date()).toISOString().slice(0,10)}.data.json`
setFilename(_filename);
console.log(_route, _filename);
}, [state]);
return (
<Box>
Expand Down Expand Up @@ -114,10 +113,7 @@ export default function TelescopePage({ state, dispatch }) {
setError(err);
};
axios.get(route)
.then((res) => {
console.log(res.data);
setIsUploadComplete(true);
})
.then((res) => setIsUploadComplete(true))
.catch(errFn)
.finally(() => {
setIsUploading(false);
Expand Down

0 comments on commit ce76566

Please sign in to comment.