Skip to content

Commit

Permalink
fix: council tab (#409)
Browse files Browse the repository at this point in the history
  • Loading branch information
MrX-SNX authored Aug 23, 2024
1 parent 3cf7133 commit 90d6406
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions governance/ui/src/pages/MyProfile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,19 @@ export default function MyProfile() {
</Heading>
);
return (
<Container maxW={{ base: '100%', lg: '1280px' }} justifyContent="flex-start" w="100%">
<>
<CouncilTabs activeCouncil="spartan" />
<Flex flexDir="column" p="4" maxW="1440px" mx="auto" w="100%">
<Heading size="lg" mt="6">
My Profile
</Heading>
<Text fontSize="12px" color="gray.500" mb="4">
Update your profile information below
</Text>
<UserProfileForm />
</Flex>
</Container>
<Container maxW={{ base: '100%', lg: '1280px' }} justifyContent="flex-start" w="100%">
<Flex flexDir="column" p="4" maxW="1440px" mx="auto" w="100%">
<Heading size="lg" mt="6">
My Profile
</Heading>
<Text fontSize="12px" color="gray.500" mb="4">
Update your profile information below
</Text>
<UserProfileForm />
</Flex>
</Container>
</>
);
}

0 comments on commit 90d6406

Please sign in to comment.