Skip to content

Commit d110f2b

Browse files
authored
fix: list item row render in markdown as a View component (#3209)
1 parent e1250d8 commit d110f2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package/src/components/Message/MessageSimple/utils/renderText.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ const Bullet = ({ index, style }: BulletProps) => (
525525
);
526526

527527
const ListRow = ({ children, style }: PropsWithChildren<ViewProps>) => (
528-
<Text style={style}>{children}</Text>
528+
<View style={style}>{children}</View>
529529
);
530530

531531
const ListItem = ({ children, style }: PropsWithChildren<TextProps>) => (

0 commit comments

Comments
 (0)