Compare commits

...

3 Commits
0.11.0 ... main

Author SHA1 Message Date
01cc7eb197 Revert "dockerfile"
This reverts commit 2d4663ef7416ea2f3efe808f0cfca9a0557f0dc3.
2024-05-21 22:35:19 -04:00
2d4663ef74 dockerfile 2024-05-21 22:35:13 -04:00
Damien Ostler
0807d6d11d fix: removed logo that is broken 2024-03-17 06:56:35 -04:00
2 changed files with 14 additions and 7 deletions

View File

@ -61,7 +61,6 @@ const VerticalNavHeader = (props: Props) => {
) : (
<Link href='/' passHref>
<StyledLink>
<img width={30} height={25} src= "https://s6.imgcdn.dev/ttLwl.png"/>
<HeaderTitle variant='h6' sx={{ ml: 3 }}>
{themeConfig.templateName}
</HeaderTitle>

View File

@ -92,12 +92,20 @@ const AdminRequest = () => {
{request?.message}
</TextField>
</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}>
<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 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 item xs={6}>