More hotfixes to app passwords (#511)
* Fix app passwords modal on web * Fix delete app password on web
This commit is contained in:
parent
16124b5081
commit
af2fd3cf29
2 changed files with 27 additions and 17 deletions
|
@ -18,6 +18,7 @@ import * as AltTextImageModal from './AltImage'
|
|||
import * as ChangeHandleModal from './ChangeHandle'
|
||||
import * as WaitlistModal from './Waitlist'
|
||||
import * as InviteCodesModal from './InviteCodes'
|
||||
import * as AddAppPassword from './AddAppPasswords'
|
||||
import * as ContentFilteringSettingsModal from './ContentFilteringSettings'
|
||||
|
||||
export const ModalsContainer = observer(function ModalsContainer() {
|
||||
|
@ -77,6 +78,8 @@ function Modal({modal}: {modal: ModalIface}) {
|
|||
element = <WaitlistModal.Component />
|
||||
} else if (modal.name === 'invite-codes') {
|
||||
element = <InviteCodesModal.Component />
|
||||
} else if (modal.name === 'add-app-password') {
|
||||
element = <AddAppPassword.Component />
|
||||
} else if (modal.name === 'content-filtering-settings') {
|
||||
element = <ContentFilteringSettingsModal.Component />
|
||||
} else if (modal.name === 'alt-text-image') {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue