Skip to content

Commit 514293c

Browse files
committed
fix: increase seconds remaining
1 parent 5f78c5f commit 514293c

File tree

1 file changed

+1
-1
lines changed
  • apps/playground/src/instruments/examples/interactive/Interactive-With-Video

1 file changed

+1
-1
lines changed

apps/playground/src/instruments/examples/interactive/Interactive-With-Video/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { z } from '/runtime/v1/[email protected]';
66
import catVideo from './cat-video.mp4';
77

88
const Task: React.FC<{ done: (data: { success: boolean }) => void }> = ({ done }) => {
9-
const [secondsRemaining, setSecondsRemaining] = useState(5);
9+
const [secondsRemaining, setSecondsRemaining] = useState(15);
1010
const [value, setValue] = useState('');
1111

1212
useEffect(() => {

0 commit comments

Comments
 (0)