+
+
+
+
+
+
Troubleshooting guide
+
+ -
+
Correct microphone selected?
+
+
+
+ Check within the settings, if the right microphone has been selected.
+ The indicators will show you any voice activity.
+
+
+ -
+
Are any addons blocking the microphone access?
+
+ Some addons might block the access to your microphone. Try to disable all addons and reload the site.
+
+
+ -
+
Has WebRTC been enabled?
+
+
+ here
+
+
+
+ -
+
Reload the site
+
+ In some cases, reloading the site will already solve the issue for you.
+
+
+ -
+
Nothing worked? Submit an issue
+
+
+ forum
+
+
+ here
+
+
+
+
+
+
+
+
+
+
+
+
+ )
+}
+
+export const TestToggle = () => {
+ const events = useContext(EchoTestEventRegistry);
+
+ const [ state, setState ] = useState<"loading" | boolean>(() => {
+ events.fire("query_test_state");
+ return "loading";
+ });
+
+ events.reactUse("notify_tests_toggle", event => setState(event.enabled));
+
+ return (
+