diff --git a/src/components/views/elements/ToggleSwitch.tsx b/src/components/views/elements/ToggleSwitch.tsx index c5917c20526..f29405ba8d5 100644 --- a/src/components/views/elements/ToggleSwitch.tsx +++ b/src/components/views/elements/ToggleSwitch.tsx @@ -35,6 +35,9 @@ interface IProps { // Called when the checked state changes. First argument will be the new state. onChange(checked: boolean): void; + + // id to bind with other elements + id?: string; } // Controlled Toggle Switch element, written with Accessibility in mind diff --git a/src/components/views/settings/SetIntegrationManager.tsx b/src/components/views/settings/SetIntegrationManager.tsx index 0290c4b7fe5..c2a498d53db 100644 --- a/src/components/views/settings/SetIntegrationManager.tsx +++ b/src/components/views/settings/SetIntegrationManager.tsx @@ -70,13 +70,14 @@ export default class SetIntegrationManager extends React.Component + ); } }