Profile: Use Stack so the profile tabs span the full width of the page (#80353)

use Stack so the profile tabs span the full width of the page
This commit is contained in:
Ashley Harrison
2024-01-11 12:54:19 +00:00
committed by GitHub
parent 4bf5c63657
commit 12135998e6

View File

@@ -126,7 +126,7 @@ export function UserProfileEditPage({
const UserProfileWithTabs = () => (
<div data-testid={selectors.components.UserProfile.extensionPointTabs}>
<VerticalGroup spacing="md">
<Stack direction="column" gap={2}>
<TabsBar>
{tabs.map(({ id, title }) => {
return (
@@ -160,7 +160,7 @@ export function UserProfileEditPage({
return null;
})}
</TabContent>
</VerticalGroup>
</Stack>
</div>
);