Skip to content

Commit 185236e

Browse files
committed
fix: list picker and heading style
1 parent 724a9ce commit 185236e

4 files changed

Lines changed: 3 additions & 110 deletions

File tree

src/components/Pickers/ListPicker.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ ListPicker that supports single value or multiple values selected at the same it
2828
label: 'C',
2929
value: 'c',
3030
description:
31-
'C is a general-purpose, procedural computer programming language.',
31+
'C is a general-purpose, procedural computer programming language. C is a general-purpose, procedural computer programming language.',
3232
},
3333
{
3434
label: 'C#',

src/components/Pickers/ListPicker.tsx

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -141,13 +141,7 @@ const StyledListPickerItem = <TValue extends any = any>(
141141
overrides={{
142142
Action: {
143143
component: () => (
144-
<Box
145-
justifyContent="center"
146-
position="absolute"
147-
right={0}
148-
alignItems="center"
149-
alignSelf="center"
150-
>
144+
<Box justifyContent="center" alignItems="center">
151145
<Checkbox
152146
onValueChange={() => onPress(value, index, isSelected)}
153147
shape="circle"

src/components/Typography/Heading.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ export const Heading = (props: HeadingProps) => {
7878
// @ts-ignore
7979
accessibilityRole={Platform.OS === 'web' ? 'heading' : 'none'}
8080
aria-level={accessibilityLevel} // Web
81-
accessibilityLevel={accessibilityLevel}
8281
style={[
8382
{
8483
...sizeStyle,

0 commit comments

Comments
 (0)