fix: show_badge

This commit is contained in:
IlyaDoronin 2024-03-07 16:20:02 +03:00
parent eb6c0fbd26
commit dd65ea2091

@ -25,7 +25,7 @@ import PenaLogo from "@icons/PenaLogo.png";
export const StartPageViewPublication = () => { export const StartPageViewPublication = () => {
const theme = useTheme(); const theme = useTheme();
const { settings } = useQuizData(); const { settings, show_badge } = useQuizData();
const { isMobileDevice } = useUADevice(); const { isMobileDevice } = useUADevice();
const isMobile = useRootContainerSize() < 700; const isMobile = useRootContainerSize() < 700;
const isTablet = useRootContainerSize() < 800; const isTablet = useRootContainerSize() < 800;
@ -324,6 +324,7 @@ export const StartPageViewPublication = () => {
</Typography> </Typography>
</Box> </Box>
{show_badge && (
<Box <Box
component={Link} component={Link}
target={"_blank"} target={"_blank"}
@ -360,6 +361,7 @@ export const StartPageViewPublication = () => {
Сделано на PenaQuiz Сделано на PenaQuiz
</Typography> </Typography>
</Box> </Box>
)}
</Box> </Box>
</> </>
} }