mirror of
https://github.com/D4M13N-D3V/comissions-app-ui.git
synced 2025-03-13 07:45:07 +00:00
fix: removed logo that is broken
This commit is contained in:
parent
2a405067d8
commit
0807d6d11d
@ -61,7 +61,6 @@ const VerticalNavHeader = (props: Props) => {
|
|||||||
) : (
|
) : (
|
||||||
<Link href='/' passHref>
|
<Link href='/' passHref>
|
||||||
<StyledLink>
|
<StyledLink>
|
||||||
<img width={30} height={25} src= "https://s6.imgcdn.dev/ttLwl.png"/>
|
|
||||||
<HeaderTitle variant='h6' sx={{ ml: 3 }}>
|
<HeaderTitle variant='h6' sx={{ ml: 3 }}>
|
||||||
{themeConfig.templateName}
|
{themeConfig.templateName}
|
||||||
</HeaderTitle>
|
</HeaderTitle>
|
||||||
|
@ -92,12 +92,20 @@ const AdminRequest = () => {
|
|||||||
{request?.message}
|
{request?.message}
|
||||||
</TextField>
|
</TextField>
|
||||||
</Grid>
|
</Grid>
|
||||||
|
{request?.accepted ? (
|
||||||
|
<Grid item xs={12} md={12}>
|
||||||
|
<Button fullWidth variant="contained" onClick={handleAccept} color="error">Revoke Artist Access</Button>
|
||||||
|
</Grid>
|
||||||
|
):(
|
||||||
|
<>
|
||||||
<Grid item xs={12} md={6}>
|
<Grid item xs={12} md={6}>
|
||||||
<Button fullWidth disabled={request?.accepted} variant="contained" onClick={handleAccept} color="primary">Accept</Button>
|
<Button fullWidth variant="contained" onClick={handleAccept} color="primary">Accept</Button>
|
||||||
</Grid>
|
</Grid>
|
||||||
<Grid item xs={12} md={6}>
|
<Grid item xs={12} md={6}>
|
||||||
<Button fullWidth disabled={request?.accepted} variant="contained" onClick={handleDeny} color="secondary">Reject</Button>
|
<Button fullWidth variant="contained" onClick={handleDeny} color="secondary">Reject</Button>
|
||||||
</Grid>
|
</Grid>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
</Grid>
|
</Grid>
|
||||||
</Grid>
|
</Grid>
|
||||||
<Grid item xs={6}>
|
<Grid item xs={6}>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user