pl-fe: rename modals

Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
marcin mikołajczak
2024-09-09 12:52:24 +02:00
parent ea7853eac2
commit 406bc01ed1
6 changed files with 5 additions and 5 deletions

View File

@ -2,7 +2,7 @@ import { AppDispatch } from 'pl-fe/store';
import type { ICryptoAddress } from 'pl-fe/features/crypto-donate/components/crypto-address';
import type { ModalType } from 'pl-fe/features/ui/components/modal-root';
import type { AccountModerationModalProps } from 'pl-fe/features/ui/components/modals/account-moderation-modal/account-moderation-modal';
import type { AccountModerationModalProps } from 'pl-fe/features/ui/components/modals/account-moderation-modal';
import type { BoostModalProps } from 'pl-fe/features/ui/components/modals/boost-modal';
import type { CompareHistoryModalProps } from 'pl-fe/features/ui/components/modals/compare-history-modal';
import type { ComponentModalProps } from 'pl-fe/features/ui/components/modals/component-modal';

View File

@ -11,15 +11,15 @@ import ModalLoading from './modal-loading';
/* eslint sort-keys: "error" */
const MODAL_COMPONENTS = {
ACCOUNT_MODERATION: lazy(() => import('pl-fe/features/ui/components/modals/account-moderation-modal/account-moderation-modal')),
ACCOUNT_MODERATION: lazy(() => import('pl-fe/features/ui/components/modals/account-moderation-modal')),
BIRTHDAYS: lazy(() => import('pl-fe/features/ui/components/modals/birthdays-modal')),
BOOST: lazy(() => import('pl-fe/features/ui/components/modals/boost-modal')),
COMPARE_HISTORY: lazy(() => import('pl-fe/features/ui/components/modals/compare-history-modal')),
COMPONENT: lazy(() => import('pl-fe/features/ui/components/modals/component-modal')),
COMPOSE: lazy(() => import('pl-fe/features/ui/components/modals/compose-modal')),
COMPOSE_EVENT: lazy(() => import('pl-fe/features/ui/components/modals/compose-event-modal/compose-event-modal')),
COMPOSE_EVENT: lazy(() => import('pl-fe/features/ui/components/modals/compose-event-modal')),
CONFIRM: lazy(() => import('pl-fe/features/ui/components/modals/confirmation-modal')),
CREATE_GROUP: lazy(() => import('pl-fe/features/ui/components/modals/manage-group-modal/create-group-modal')),
CREATE_GROUP: lazy(() => import('pl-fe/features/ui/components/modals/manage-group-modal')),
CRYPTO_DONATE: lazy(() => import('pl-fe/features/ui/components/modals/crypto-donate-modal')),
DISLIKES: lazy(() => import('pl-fe/features/ui/components/modals/dislikes-modal')),
EDIT_ANNOUNCEMENT: lazy(() => import('pl-fe/features/ui/components/modals/edit-announcement-modal')),
@ -43,7 +43,7 @@ const MODAL_COMPONENTS = {
REACTIONS: lazy(() => import('pl-fe/features/ui/components/modals/reactions-modal')),
REBLOGS: lazy(() => import('pl-fe/features/ui/components/modals/reblogs-modal')),
REPLY_MENTIONS: lazy(() => import('pl-fe/features/ui/components/modals/reply-mentions-modal')),
REPORT: lazy(() => import('pl-fe/features/ui/components/modals/report-modal/report-modal')),
REPORT: lazy(() => import('pl-fe/features/ui/components/modals/report-modal')),
SELECT_BOOKMARK_FOLDER: lazy(() => import('pl-fe/features/ui/components/modals/select-bookmark-folder-modal')),
TEXT_FIELD: lazy(() => import('pl-fe/features/ui/components/modals/text-field-modal')),
UNAUTHORIZED: lazy(() => import('pl-fe/features/ui/components/modals/unauthorized-modal')),