Move file into components

This commit is contained in:
Nicola Benaglia 2025-05-24 12:21:37 +02:00
parent 702e18a334
commit e017d5d50d
2 changed files with 12 additions and 12 deletions

View File

@ -118,7 +118,7 @@ import {
} from './atoms/global'; } from './atoms/global';
import { NotAuthenticated } from './components/NotAuthenticated.tsx'; import { NotAuthenticated } from './components/NotAuthenticated.tsx';
import { handleGetFileFromIndexedDB } from './utils/indexedDB'; import { handleGetFileFromIndexedDB } from './utils/indexedDB';
import { Wallets } from './Wallets'; import { Wallets } from './components/Wallets.tsx';
import { useFetchResources } from './common/useFetchResources'; import { useFetchResources } from './common/useFetchResources';
import { Tutorials } from './components/Tutorials/Tutorials'; import { Tutorials } from './components/Tutorials/Tutorials';
import { useHandleTutorials } from './hooks/useHandleTutorials.tsx'; import { useHandleTutorials } from './hooks/useHandleTutorials.tsx';

View File

@ -18,24 +18,24 @@ import {
Input, Input,
useTheme, useTheme,
} from '@mui/material'; } from '@mui/material';
import { CustomButton } from './styles/App-styles'; import { CustomButton } from '../styles/App-styles.ts';
import { useDropzone } from 'react-dropzone'; import { useDropzone } from 'react-dropzone';
import EditIcon from '@mui/icons-material/Edit'; import EditIcon from '@mui/icons-material/Edit';
import { Label } from './components/Group/AddGroup'; import { Label } from './Group/AddGroup.tsx';
import { Spacer } from './common/Spacer'; import { Spacer } from '../common/Spacer.tsx';
import { import {
getWallets, getWallets,
storeWallets, storeWallets,
walletVersion, walletVersion,
} from './background/background.ts'; } from '../background/background.ts';
import { useModal } from './common/useModal'; import { useModal } from '../common/useModal.tsx';
import PhraseWallet from './utils/generateWallet/phrase-wallet'; import PhraseWallet from '../utils/generateWallet/phrase-wallet.ts';
import { decryptStoredWalletFromSeedPhrase } from './utils/decryptWallet'; import { decryptStoredWalletFromSeedPhrase } from '../utils/decryptWallet.ts';
import { crypto } from './constants/decryptWallet'; import { crypto } from '../constants/decryptWallet.ts';
import { LoadingButton } from '@mui/lab'; import { LoadingButton } from '@mui/lab';
import { PasswordField } from './components'; import { PasswordField } from './index.ts';
import { HtmlTooltip } from './components/NotAuthenticated'; import { HtmlTooltip } from './NotAuthenticated.tsx';
import { QORTAL_APP_CONTEXT } from './App'; import { QORTAL_APP_CONTEXT } from '../App.tsx';
import { useTranslation } from 'react-i18next'; import { useTranslation } from 'react-i18next';
const parsefilenameQortal = (filename) => { const parsefilenameQortal = (filename) => {