-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix/hooked problems #1021
Fix/hooked problems #1021
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, thanks for catching that! |
@@ -23,7 +23,7 @@ const Trial = ({ | |||
}) => { | |||
// Main component state | |||
const [formActive, setFormActive] = useState(!config.listen_first); | |||
const [preloadReady, setPreloadReady] = useState(!(playback?.ready_time)); | |||
const [preloadReady, setPreloadReady] = useState(false); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's actually this part which is problematic, as we don't have a setPreloadReady
command in Trials without Playback.
Close #1018, close #762 (again), close #1022.