Skip to content

Commit 579181f

Browse files
committed
fix: reset default password state in Weeding component
1 parent df5a7b4 commit 579181f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/routes/Weeding.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import Button from '#components/Button';
66
import Countdown from '#components/CountDown';
77

88
const Weeding = () => {
9-
const [password, setPassword] = useState('280795');
9+
const [password, setPassword] = useState('');
1010
const [isSecret, setIsSecret] = useState(false);
1111
const [errorMessage, setErrorMessage] = useState('');
1212
const [duration, setDuration] = useState<Duration | null>(null);

0 commit comments

Comments
 (0)