mirror of
https://github.com/Qortal/Qortal-Hub.git
synced 2025-05-30 05:06: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 { 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);
|
||||
};
|
||||
|
@ -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';
|
||||
|
@ -88,7 +88,6 @@ export const publishData = async ({
|
||||
feeAmount,
|
||||
filename,
|
||||
identifier,
|
||||
isBase64,
|
||||
registeredName,
|
||||
service,
|
||||
tag1,
|
||||
|
Loading…
x
Reference in New Issue
Block a user