mirror of
https://github.com/Qortal/Qortal-Hub.git
synced 2025-05-31 05:36:59 +00:00
fix missing imports
This commit is contained in:
parent
506d65dc08
commit
d06a66c591
@ -16,6 +16,7 @@ import RefreshIcon from '@mui/icons-material/Refresh';
|
|||||||
import { navigationControllerAtom } from '../../atoms/global';
|
import { navigationControllerAtom } from '../../atoms/global';
|
||||||
import { AppsDevModeTabComponent } from './AppsDevModeTabComponent';
|
import { AppsDevModeTabComponent } from './AppsDevModeTabComponent';
|
||||||
import { useAtom } from 'jotai';
|
import { useAtom } from 'jotai';
|
||||||
|
import { useTranslation } from 'react-i18next';
|
||||||
|
|
||||||
export const AppsDevModeNavBar = () => {
|
export const AppsDevModeNavBar = () => {
|
||||||
const [tabs, setTabs] = useState([]);
|
const [tabs, setTabs] = useState([]);
|
||||||
@ -28,7 +29,7 @@ export const AppsDevModeNavBar = () => {
|
|||||||
const tabsRef = useRef(null);
|
const tabsRef = useRef(null);
|
||||||
const [anchorEl, setAnchorEl] = useState(null);
|
const [anchorEl, setAnchorEl] = useState(null);
|
||||||
const open = Boolean(anchorEl);
|
const open = Boolean(anchorEl);
|
||||||
|
const { t } = useTranslation();
|
||||||
const handleClick = (event) => {
|
const handleClick = (event) => {
|
||||||
setAnchorEl(event.currentTarget);
|
setAnchorEl(event.currentTarget);
|
||||||
};
|
};
|
||||||
|
@ -37,7 +37,7 @@ import {
|
|||||||
} from './Apps-styles';
|
} from './Apps-styles';
|
||||||
import AddIcon from '@mui/icons-material/Add';
|
import AddIcon from '@mui/icons-material/Add';
|
||||||
import ImageUploader from '../../common/ImageUploader';
|
import ImageUploader from '../../common/ImageUploader';
|
||||||
import { QORTAL_APP_CONTEXT } from '../../App';
|
import { getBaseApiReact, QORTAL_APP_CONTEXT } from '../../App';
|
||||||
import { fileToBase64 } from '../../utils/fileReading';
|
import { fileToBase64 } from '../../utils/fileReading';
|
||||||
import { objectToBase64 } from '../../qdn/encryption/group-encryption';
|
import { objectToBase64 } from '../../qdn/encryption/group-encryption';
|
||||||
import { getFee } from '../../background/background.ts';
|
import { getFee } from '../../background/background.ts';
|
||||||
|
@ -88,7 +88,6 @@ export const publishData = async ({
|
|||||||
feeAmount,
|
feeAmount,
|
||||||
filename,
|
filename,
|
||||||
identifier,
|
identifier,
|
||||||
isBase64,
|
|
||||||
registeredName,
|
registeredName,
|
||||||
service,
|
service,
|
||||||
tag1,
|
tag1,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user