Skip to content

Commit

Permalink
Remove commented out code
Browse files Browse the repository at this point in the history
  • Loading branch information
ProchaLu committed Jul 30, 2024
1 parent 15cf2ce commit f991f11
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion components/Snackbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ function Snackbar({ actionText, errorMessage, setErrorMessage }: Props) {
setIsVisible(true);
const timeout = setTimeout(() => {
setIsVisible(false);
// setErrorMessage('');
}, 3000);

return () => clearTimeout(timeout);
Expand Down

0 comments on commit f991f11

Please sign in to comment.