Skip to content

Commit

Permalink
removed development console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
me3zaAKAgoat committed Mar 29, 2024
1 parent eecbd49 commit 11a6b78
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions frontend/src/components/HUD.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,10 @@ function HUD({
type: 'success',
});
} catch (error) {
console.log(error);
console.error(error);
}
};

console.log(endDate);

return (
<div className="w-[600px] z-10 bg-secondary h-[70%] border-[0.5px] border-tertiary p-2 px-4 flex items-center justify-between">
<div className="flex">
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/modals/Settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function Avatar() {
JSON.stringify({ ...user!.userInfo, avatar: res.avatar }),
);
} catch (err: any) {
console.log(err);
console.error(err);
setToast({ message: err.response.data.error, type: 'error' });
}
} else setToast({ message: 'No image selected', type: 'error' });
Expand Down

0 comments on commit 11a6b78

Please sign in to comment.