fix missing imports

This commit is contained in:
PhilReact 2025-05-24 16:01:44 +03:00
parent 506d65dc08
commit d06a66c591
3 changed files with 3 additions and 3 deletions

View File

@ -16,6 +16,7 @@ import RefreshIcon from '@mui/icons-material/Refresh';
import { navigationControllerAtom } from '../../atoms/global';
import { AppsDevModeTabComponent } from './AppsDevModeTabComponent';
import { useAtom } from 'jotai';
import { useTranslation } from 'react-i18next';
export const AppsDevModeNavBar = () => {
const [tabs, setTabs] = useState([]);
@ -28,7 +29,7 @@ export const AppsDevModeNavBar = () => {
const tabsRef = useRef(null);
const [anchorEl, setAnchorEl] = useState(null);
const open = Boolean(anchorEl);
const { t } = useTranslation();
const handleClick = (event) => {
setAnchorEl(event.currentTarget);
};

View File

@ -37,7 +37,7 @@ import {
} from './Apps-styles';
import AddIcon from '@mui/icons-material/Add';
import ImageUploader from '../../common/ImageUploader';
import { QORTAL_APP_CONTEXT } from '../../App';
import { getBaseApiReact, QORTAL_APP_CONTEXT } from '../../App';
import { fileToBase64 } from '../../utils/fileReading';
import { objectToBase64 } from '../../qdn/encryption/group-encryption';
import { getFee } from '../../background/background.ts';

View File

@ -88,7 +88,6 @@ export const publishData = async ({
feeAmount,
filename,
identifier,
isBase64,
registeredName,
service,
tag1,