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 817a73e commit 264023aCopy full SHA for 264023a
src/components/Roadmap.tsx
@@ -69,18 +69,14 @@ const IssueSection: React.FC<IPropsIssueSection> = ({ issues }) => {
69
}}
70
>
71
<Box>{issue.title}</Box>
72
- {issue.errorMsg && <Text color="fail">{issue.errorMsg}</Text>}
+ {issue.errorMsg && (
73
+ <Text color="fail" mb={0}>
74
+ {issue.errorMsg}
75
+ </Text>
76
+ )}
77
<Box>
78
{issue.html_url && (
- <LinkOverlay
- href={url}
- textDecoration="none"
- _after={{
79
- content: '"↗"',
80
- ml: 0.5,
81
- }}
82
- isExternal
83
- >
+ <LinkOverlay as={Link} href={url}>
84
Discuss
85
</LinkOverlay>
86
)}
0 commit comments