fix referer for external images

This commit is contained in:
proddy
2024-10-01 09:56:32 +02:00
parent ed685d4a5e
commit 88a01426c1

View File

@@ -76,7 +76,6 @@ const Help = () => {
}); });
return ( return (
<>
<SectionContent> <SectionContent>
<Stack <Stack
padding={1} padding={1}
@@ -99,14 +98,11 @@ const Help = () => {
</Typography> </Typography>
<Box <Box
component="img" component="img"
referrerPolicy="no-referrer"
sx={{ sx={{
maxHeight: { xs: 100, md: 250 } maxHeight: { xs: 100, md: 250 }
}} }}
src={ src={customSupportIMG || 'https://emsesp.org/_media/images/installer.jpeg'}
customSupportIMG
? customSupportIMG
: 'https://emsesp.org/_media/images/installer.jpeg'
}
/> />
</Stack> </Stack>
@@ -183,7 +179,6 @@ const Help = () => {
</Link> </Link>
</Typography> </Typography>
</SectionContent> </SectionContent>
</>
); );
}; };