fix import

This commit is contained in:
Abhinav 2022-06-25 21:26:20 +05:30
parent 4cc84d20b0
commit 25459392da
9 changed files with 16 additions and 15 deletions

View file

@ -1,6 +1,6 @@
import React, { useContext, useEffect, useMemo } from 'react'; import React, { useContext, useEffect, useMemo } from 'react';
import { Collection, CollectionSummaries } from 'types/collection'; import { Collection, CollectionSummaries } from 'types/collection';
import DialogTitleWithCloseButton from 'components/DialogBox/titleWithCloseButton'; import DialogTitleWithCloseButton from 'components/DialogBox/TitleWithCloseButton';
import { isSystemCollection } from 'utils/collection'; import { isSystemCollection } from 'utils/collection';
import { AppContext } from 'pages/_app'; import { AppContext } from 'pages/_app';
import { AllCollectionDialog } from 'components/Collections/AllCollections/dialog'; import { AllCollectionDialog } from 'components/Collections/AllCollections/dialog';

View file

@ -2,8 +2,9 @@ import EmailShare from './emailShare';
import React, { useContext } from 'react'; import React, { useContext } from 'react';
import constants from 'utils/strings/constants'; import constants from 'utils/strings/constants';
import { Collection } from 'types/collection'; import { Collection } from 'types/collection';
import { dialogCloseHandler } from 'components/DialogBox/base'; import DialogTitleWithCloseButton, {
import DialogTitleWithCloseButton from 'components/DialogBox/titleWithCloseButton'; dialogCloseHandler,
} from 'components/DialogBox/TitleWithCloseButton';
import DialogContent from '@mui/material/DialogContent'; import DialogContent from '@mui/material/DialogContent';
import { Divider } from '@mui/material'; import { Divider } from '@mui/material';

View file

@ -5,7 +5,7 @@ import React, { useContext } from 'react';
import billingService from 'services/billingService'; import billingService from 'services/billingService';
import { getFamilyPlanAdmin } from 'utils/billing'; import { getFamilyPlanAdmin } from 'utils/billing';
import constants from 'utils/strings/constants'; import constants from 'utils/strings/constants';
import DialogTitleWithCloseButton from './DialogBox/titleWithCloseButton'; import DialogTitleWithCloseButton from './DialogBox/TitleWithCloseButton';
export function MemberSubscriptionManage({ open, userDetails, onClose }) { export function MemberSubscriptionManage({ open, userDetails, onClose }) {
const { setDialogMessage, isMobile } = useContext(AppContext); const { setDialogMessage, isMobile } = useContext(AppContext);

View file

@ -5,7 +5,7 @@ import { RenderFileName } from './RenderFileName';
import { ExifData } from './ExifData'; import { ExifData } from './ExifData';
import { RenderCreationTime } from './RenderCreationTime'; import { RenderCreationTime } from './RenderCreationTime';
import { RenderInfoItem } from './RenderInfoItem'; import { RenderInfoItem } from './RenderInfoItem';
import DialogTitleWithCloseButton from 'components/DialogBox/titleWithCloseButton'; import DialogTitleWithCloseButton from 'components/DialogBox/TitleWithCloseButton';
import { Dialog, DialogContent, Link, styled, Typography } from '@mui/material'; import { Dialog, DialogContent, Link, styled, Typography } from '@mui/material';
import { AppContext } from 'pages/_app'; import { AppContext } from 'pages/_app';

View file

@ -13,7 +13,7 @@ import {
import * as bip39 from 'bip39'; import * as bip39 from 'bip39';
import { DashedBorderWrapper } from './styledComponents'; import { DashedBorderWrapper } from './styledComponents';
import { AppContext } from 'pages/_app'; import { AppContext } from 'pages/_app';
import DialogTitleWithCloseButton from 'components/DialogBox/titleWithCloseButton'; import DialogTitleWithCloseButton from 'components/DialogBox/TitleWithCloseButton';
// mobile client library only supports english. // mobile client library only supports english.
bip39.setDefaultWordlist('english'); bip39.setDefaultWordlist('english');

View file

@ -8,8 +8,8 @@ import { InProgressSection } from './inProgressSection';
import { ResultSection } from './resultSection'; import { ResultSection } from './resultSection';
import { NotUploadSectionHeader } from './styledComponents'; import { NotUploadSectionHeader } from './styledComponents';
import { getOSSpecificDesktopAppDownloadLink } from 'utils/common'; import { getOSSpecificDesktopAppDownloadLink } from 'utils/common';
import { dialogCloseHandler } from 'components/DialogBox/base';
import UploadProgressContext from 'contexts/uploadProgress'; import UploadProgressContext from 'contexts/uploadProgress';
import { dialogCloseHandler } from 'components/DialogBox/TitleWithCloseButton';
export function UploadProgressDialog() { export function UploadProgressDialog() {
const { open, onClose, uploadStage, finishedUploads } = useContext( const { open, onClose, uploadStage, finishedUploads } = useContext(

View file

@ -24,7 +24,7 @@ import { AppContext } from 'pages/_app';
import Plans from './plans'; import Plans from './plans';
import { Box, Dialog, DialogContent, styled } from '@mui/material'; import { Box, Dialog, DialogContent, styled } from '@mui/material';
import { CenteredFlex } from 'components/Container'; import { CenteredFlex } from 'components/Container';
import DialogTitleWithCloseButton from 'components/DialogBox/titleWithCloseButton'; import DialogTitleWithCloseButton from 'components/DialogBox/TitleWithCloseButton';
interface Props { interface Props {
modalView: boolean; modalView: boolean;

View file

@ -1,8 +1,8 @@
import { Button, Dialog, DialogContent } from '@mui/material'; import { Button, Dialog, DialogContent, Typography } from '@mui/material';
import { CenteredFlex, SpaceBetweenFlex } from 'components/Container'; import { CenteredFlex, SpaceBetweenFlex } from 'components/Container';
import { dialogCloseHandler } from 'components/DialogBox/base'; import DialogTitleWithCloseButton, {
import MessageText from 'components/DialogBox/messageText'; dialogCloseHandler,
import DialogTitleWithCloseButton from 'components/DialogBox/titleWithCloseButton'; } from 'components/DialogBox/TitleWithCloseButton';
import React from 'react'; import React from 'react';
import constants from 'utils/strings/constants'; import constants from 'utils/strings/constants';
@ -28,9 +28,9 @@ function UploadStrategyChoiceModal({
</DialogTitleWithCloseButton> </DialogTitleWithCloseButton>
<DialogContent> <DialogContent>
<CenteredFlex mb={1}> <CenteredFlex mb={1}>
<MessageText> <Typography color="text.secondary">
{constants.UPLOAD_STRATEGY_CHOICE} {constants.UPLOAD_STRATEGY_CHOICE}
</MessageText> </Typography>
</CenteredFlex> </CenteredFlex>
<SpaceBetweenFlex px={2}> <SpaceBetweenFlex px={2}>
<Button <Button

View file

@ -233,7 +233,7 @@ const darkThemeOptions = createTheme({
typography: { typography: {
body1: { body1: {
fontSize: '16px', fontSize: '16px',
lineHeight: '20px', lineHeight: '19px',
}, },
body2: { body2: {
fontSize: '14px', fontSize: '14px',