diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-04-09 00:58:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-09 00:58:18 +0100 |
commit | a49a5a351d2b58631d067c0524c5ebb097a3d5fe (patch) | |
tree | d199c7312763ac87848c2038c85ef8d6f846e7d2 /src/view/com/modals/Modal.tsx | |
parent | 2bc20b1752d455bc1ca48e5f8eb4bd670d22ec34 (diff) | |
download | voidsky-a49a5a351d2b58631d067c0524c5ebb097a3d5fe.tar.zst |
Use ALF for the embed consent modal (#3336)
Diffstat (limited to 'src/view/com/modals/Modal.tsx')
-rw-r--r-- | src/view/com/modals/Modal.tsx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/view/com/modals/Modal.tsx b/src/view/com/modals/Modal.tsx index 85ffccf12..652481301 100644 --- a/src/view/com/modals/Modal.tsx +++ b/src/view/com/modals/Modal.tsx @@ -15,7 +15,6 @@ import * as ChangePasswordModal from './ChangePassword' import * as CreateOrEditListModal from './CreateOrEditList' import * as DeleteAccountModal from './DeleteAccount' import * as EditProfileModal from './EditProfile' -import * as EmbedConsentModal from './EmbedConsent' import * as InAppBrowserConsentModal from './InAppBrowserConsent' import * as InviteCodesModal from './InviteCodes' import * as ContentLanguagesSettingsModal from './lang-settings/ContentLanguagesSettings' @@ -116,9 +115,6 @@ export function ModalsContainer() { } else if (activeModal?.name === 'link-warning') { snapPoints = LinkWarningModal.snapPoints element = <LinkWarningModal.Component {...activeModal} /> - } else if (activeModal?.name === 'embed-consent') { - snapPoints = EmbedConsentModal.snapPoints - element = <EmbedConsentModal.Component {...activeModal} /> } else if (activeModal?.name === 'in-app-browser-consent') { snapPoints = InAppBrowserConsentModal.snapPoints element = <InAppBrowserConsentModal.Component {...activeModal} /> |