diff options
author | John Fawcett <jrf0110@gmail.com> | 2023-04-03 12:18:57 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-03 12:18:57 -0500 |
commit | 180e373b6ffca0b20f1b8f222c9da654d895ee18 (patch) | |
tree | 567c990e72ff7d5f7d78d3f4763bc4a27a40d853 /src | |
parent | 9d178c7e155dc7d7a2b96ec89b20008a22ac1784 (diff) | |
download | voidsky-180e373b6ffca0b20f1b8f222c9da654d895ee18.tar.zst |
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/posts/FeedSlice.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/view/com/posts/FeedSlice.tsx b/src/view/com/posts/FeedSlice.tsx index 4df6d4f54..806ced20c 100644 --- a/src/view/com/posts/FeedSlice.tsx +++ b/src/view/com/posts/FeedSlice.tsx @@ -85,9 +85,9 @@ function ViewFullThread({slice}: {slice: FeedSliceModel}) { stroke={pal.colors.replyLine} strokeWidth="2" /> - <Circle x="2" y="16" r="1.5" fill={pal.colors.replyLineDot} /> - <Circle x="2" y="22" r="1.5" fill={pal.colors.replyLineDot} /> - <Circle x="2" y="28" r="1.5" fill={pal.colors.replyLineDot} /> + <Circle cx="2" cy="16" r="1.5" fill={pal.colors.replyLineDot} /> + <Circle cx="2" cy="22" r="1.5" fill={pal.colors.replyLineDot} /> + <Circle cx="2" cy="28" r="1.5" fill={pal.colors.replyLineDot} /> </Svg> </View> <Text type="md" style={pal.link}> |