aboutsummaryrefslogtreecommitdiff
path: root/src/utils/modal.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/modal.tsx')
-rw-r--r--src/utils/modal.tsx12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/utils/modal.tsx b/src/utils/modal.tsx
index 3a22bbe..2affbd7 100644
--- a/src/utils/modal.tsx
+++ b/src/utils/modal.tsx
@@ -56,12 +56,12 @@ interface ModalRootProps {
type RenderFunction = (props: ModalProps) => React.ReactNode;
-export const Modals = mapMangledModuleLazy(".onAnimationEnd,", {
- ModalRoot: filters.byCode("headerIdIsManaged:"),
- ModalHeader: filters.byCode("children", "separator", "wrap", "NO_WRAP", "grow", "shrink", "id", "header"),
- ModalContent: filters.byCode("scrollerRef", "content", "className", "children"),
- ModalFooter: filters.byCode("HORIZONTAL_REVERSE", "START", "STRETCH", "NO_WRAP", "footerSeparator"),
- ModalCloseButton: filters.byCode("closeWithCircleBackground", "hideOnFullscreen"),
+export const Modals = mapMangledModuleLazy("().closeWithCircleBackground", {
+ ModalRoot: filters.byCode("().root"),
+ ModalHeader: filters.byCode("().header"),
+ ModalContent: filters.byCode("().content"),
+ ModalFooter: filters.byCode("().footerSeparator"),
+ ModalCloseButton: filters.byCode("().closeWithCircleBackground"),
});
export const ModalRoot = (props: ModalRootProps) => <Modals.ModalRoot {...props} />;