We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1548224 commit 935d8ceCopy full SHA for 935d8ce
static/app/views/onboarding/components/scmAlertFrequency.tsx
@@ -46,8 +46,8 @@ function AlertOptionCard({
46
children,
47
}: AlertOptionCardProps) {
48
return (
49
- <Stack gap="md">
50
- <ScmCardButton role="radio" aria-checked={isSelected} onClick={onSelect}>
+ <ScmCardButton aria-checked={isSelected} onClick={onSelect}>
+ <Stack gap="md">
51
<Container
52
border={isSelected ? 'accent' : 'secondary'}
53
padding="lg"
@@ -71,9 +71,9 @@ function AlertOptionCard({
71
</Flex>
72
73
</Container>
74
- </ScmCardButton>
75
- {children}
76
- </Stack>
+ {children}
+ </Stack>
+ </ScmCardButton>
77
);
78
}
79
0 commit comments