setAnswer(i, val) }
diff --git a/react/features/prejoin/components/web/Prejoin.tsx b/react/features/prejoin/components/web/Prejoin.tsx
index eae2b69f60..bcc379a83f 100644
--- a/react/features/prejoin/components/web/Prejoin.tsx
+++ b/react/features/prejoin/components/web/Prejoin.tsx
@@ -374,10 +374,12 @@ const Prejoin = ({
className = { classes.inputContainer }
data-testid = 'prejoin.screen'>
{showDisplayNameField.current ? (
extends AbstractButton {
- accessibilityLabel = 'dialog.accessibilityLabel.liveStreaming';
+ accessibilityLabel = 'dialog.startLiveStreaming';
+ toggledAccessibilityLabel = 'dialog.stopLiveStreaming';
icon = IconSites;
label = 'dialog.startLiveStreaming';
toggledLabel = 'dialog.stopLiveStreaming';
diff --git a/react/features/recording/components/LiveStream/web/StreamKeyForm.tsx b/react/features/recording/components/LiveStream/web/StreamKeyForm.tsx
index 868cd38fa8..f0371cc642 100644
--- a/react/features/recording/components/LiveStream/web/StreamKeyForm.tsx
+++ b/react/features/recording/components/LiveStream/web/StreamKeyForm.tsx
@@ -39,20 +39,6 @@ const styles = (theme: Theme) => {
*/
class StreamKeyForm extends AbstractStreamKeyForm {
- /**
- * Initializes a new {@code StreamKeyForm} instance.
- *
- * @param {IProps} props - The React {@code Component} props to initialize
- * the new {@code StreamKeyForm} instance with.
- */
- constructor(props: IProps) {
- super(props);
-
- // Bind event handlers so they are only bound once per instance.
- this._onOpenHelp = this._onOpenHelp.bind(this);
- this._onOpenHelpKeyPress = this._onOpenHelpKeyPress.bind(this);
- }
-
/**
* Implements React's {@link Component#render()}.
*
@@ -66,6 +52,7 @@ class StreamKeyForm extends AbstractStreamKeyForm {
);
}
-
- /**
- * Opens a new tab with information on how to manually locate a YouTube
- * broadcast stream key.
- *
- * @private
- * @returns {void}
- */
- _onOpenHelp() {
- window.open(this.props._liveStreaming.helpURL, '_blank', 'noopener');
- }
-
- /**
- * Opens a new tab with information on how to manually locate a YouTube
- * broadcast stream key.
- *
- * @param {Object} e - The key event to handle.
- *
- * @private
- * @returns {void}
- */
- _onOpenHelpKeyPress(e: React.KeyboardEvent) {
- if (e.key === ' ') {
- e.preventDefault();
- this._onOpenHelp();
- }
- }
}
export default translate(connect(_mapStateToProps)(withStyles(styles)(StreamKeyForm)));
diff --git a/react/features/recording/components/LiveStream/web/StreamKeyPicker.tsx b/react/features/recording/components/LiveStream/web/StreamKeyPicker.tsx
index 8475a61274..2fb87a02f9 100644
--- a/react/features/recording/components/LiveStream/web/StreamKeyPicker.tsx
+++ b/react/features/recording/components/LiveStream/web/StreamKeyPicker.tsx
@@ -100,6 +100,7 @@ class StreamKeyPicker extends PureComponent {
return (