From 8113ed3c8cbc8894607b7d4ed6d5bb770f1a345e Mon Sep 17 00:00:00 2001 From: Vendicated Date: Sat, 7 Jan 2023 03:19:28 +0100 Subject: Fix canary --- src/utils/modal.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/utils') diff --git a/src/utils/modal.tsx b/src/utils/modal.tsx index 9a90460..73dd009 100644 --- a/src/utils/modal.tsx +++ b/src/utils/modal.tsx @@ -55,12 +55,12 @@ interface ModalRootProps { type RenderFunction = (props: ModalProps) => React.ReactNode; -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 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) => ; -- cgit