Save this key somewhere safe, you will need it to stream or login to the admin
dashboard!
-
-
- } size="small" onClick={copyStreamKey} />
-
- } size="small" onClick={generateStreamKey} />
+
Social Links
Add all your social media handles and links to your other profiles here.
-
+
-
+
-
+
);
diff --git a/web/pages/components/config/input-status-info.tsx b/web/pages/components/config/form-status-indicator.tsx
similarity index 81%
rename from web/pages/components/config/input-status-info.tsx
rename to web/pages/components/config/form-status-indicator.tsx
index bd7626f96..28c61771e 100644
--- a/web/pages/components/config/input-status-info.tsx
+++ b/web/pages/components/config/form-status-indicator.tsx
@@ -3,10 +3,10 @@ import classNames from 'classnames';
import { StatusState } from '../../../utils/input-statuses';
-interface InputStatusInfoProps {
+interface FormStatusIndicatorProps {
status: StatusState;
}
-export default function InputStatusInfo({ status }: InputStatusInfoProps) {
+export default function FormStatusIndicator({ status }: FormStatusIndicatorProps) {
const { type, icon, message } = status || {};
const classes = classNames({
'status-container': true,
diff --git a/web/pages/components/config/form-textfield-with-submit.tsx b/web/pages/components/config/form-textfield-with-submit.tsx
index a06c29982..5505aeb7c 100644
--- a/web/pages/components/config/form-textfield-with-submit.tsx
+++ b/web/pages/components/config/form-textfield-with-submit.tsx
@@ -13,7 +13,7 @@ import {
STATUS_SUCCESS,
} from '../../../utils/input-statuses';
import { UpdateArgs } from '../../../types/config-section';
-import InputStatusInfo from './input-status-info';
+import FormStatusIndicator from './form-status-indicator';
export const TEXTFIELD_TYPE_TEXT = 'default';
export const TEXTFIELD_TYPE_PASSWORD = 'password'; // Input.Password
@@ -124,7 +124,7 @@ export default function TextFieldWithSubmit(props: TextFieldWithSubmitProps) {
{tip}
-
+
-
+
{tip}
{/* */}
diff --git a/web/pages/components/config/form-toggleswitch-with-submit.tsx b/web/pages/components/config/form-toggleswitch-with-submit.tsx
index 6410636d9..4676625f2 100644
--- a/web/pages/components/config/form-toggleswitch-with-submit.tsx
+++ b/web/pages/components/config/form-toggleswitch-with-submit.tsx
@@ -7,7 +7,7 @@ import {
STATUS_PROCESSING,
STATUS_SUCCESS,
} from '../../../utils/input-statuses';
-import InputStatusInfo from './input-status-info';
+import FormStatusIndicator from './form-status-indicator';
import { RESET_TIMEOUT, postConfigUpdateToAPI } from './constants';
@@ -76,7 +76,7 @@ export default function ToggleSwitch(props: ToggleSwitchProps) {
{label}