Skip to content

Commit

Permalink
ci: prettier format
Browse files Browse the repository at this point in the history
  • Loading branch information
Github Actions committed Dec 4, 2023
1 parent 618047a commit 07ec594
Showing 1 changed file with 11 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,14 +78,15 @@ const Table: React.FC<Props> = ({ data }) => {
<StyledTableCell>{sourcesMapper[i.source_type]}</StyledTableCell>
<StyledTableCell width="268px">
{i.source_type === 'twitter_handle' ? (
<StyledLink href={`${TWITTER_LINK}/${i.source}?open=system`} target="_blank">
@{i.source}
</StyledLink>
) : (<StyledLink href={`${i.source}?open=system`} target="_blank">
{i.source}
</StyledLink>
)}
</StyledTableCell>
<StyledLink href={`${TWITTER_LINK}/${i.source}?open=system`} target="_blank">
@{i.source}
</StyledLink>
) : (
<StyledLink href={`${i.source}?open=system`} target="_blank">
{i.source}
</StyledLink>
)}
</StyledTableCell>
<StyledTableCell className="cell-center">
<Flex direction="row" justify="space-between">
<div className="approve-wrapper">
Expand Down Expand Up @@ -141,4 +142,5 @@ const StyledLink = styled.a`
}
&:hover {
cursor: pointer;
}`
}
`

0 comments on commit 07ec594

Please sign in to comment.