Oh yeah I forgot the other half
This commit is contained in:
@ -1,4 +1,6 @@
|
||||
import {
|
||||
Alert,
|
||||
AlertIcon,
|
||||
Box,
|
||||
Button,
|
||||
Card,
|
||||
@ -173,31 +175,33 @@ export default function () {
|
||||
Search
|
||||
</Button>
|
||||
</HStack>
|
||||
<Card maxW="sm" visibility={visible ? "visible" : "hidden"}>
|
||||
<CardBody>
|
||||
<Image mb="16" src={avatarUrl} />
|
||||
<Stack divider={<StackDivider />} spacing="6">
|
||||
<Box>
|
||||
<Heading size="xs">USERNAME</Heading>
|
||||
<Text pt="2" fontSize="sm">
|
||||
{username}
|
||||
</Text>
|
||||
</Box>
|
||||
<Box>
|
||||
<Heading size="xs">USER ID</Heading>
|
||||
<Text pt="2" fontSize="sm">
|
||||
{uid}
|
||||
</Text>
|
||||
</Box>
|
||||
<Box>
|
||||
<Heading size="xs">MODERATION STATUS</Heading>
|
||||
<Text pt="2" fontSize="sm">
|
||||
{status}
|
||||
</Text>
|
||||
</Box>
|
||||
</Stack>
|
||||
</CardBody>
|
||||
</Card>
|
||||
<Center mb={3} mt={3}>
|
||||
<Card maxW="md" visibility={visible ? "visible" : "hidden"}>
|
||||
<CardBody>
|
||||
<Image mb="16" src={avatarUrl} />
|
||||
<Stack divider={<StackDivider />} spacing="6">
|
||||
<Box>
|
||||
<Heading size="xs">USERNAME</Heading>
|
||||
<Text pt="2" fontSize="sm">
|
||||
{username}
|
||||
</Text>
|
||||
</Box>
|
||||
<Box>
|
||||
<Heading size="xs">USER ID</Heading>
|
||||
<Text pt="2" fontSize="sm">
|
||||
{uid}
|
||||
</Text>
|
||||
</Box>
|
||||
<Box>
|
||||
<Heading size="xs">MODERATION STATUS</Heading>
|
||||
<Text pt="2" fontSize="sm">
|
||||
{status}
|
||||
</Text>
|
||||
</Box>
|
||||
</Stack>
|
||||
</CardBody>
|
||||
</Card>
|
||||
</Center>
|
||||
{history}
|
||||
</Container>
|
||||
);
|
||||
|
Reference in New Issue
Block a user