bold contact options

master
Tudor Stanciu 2023-04-04 00:40:52 +03:00
parent 1d58d0f5e7
commit 6bad079252
1 changed files with 2 additions and 2 deletions

View File

@ -36,11 +36,11 @@ const ContactOption = ({ tooltip, label, link, onClick, ...props }) => {
primary={
<Tooltip title={tooltip}>
{onClick ? (
<Link href="#" onClick={onClick}>
<Link href="#" onClick={onClick} style={{ fontWeight: "bold" }}>
{linkLabel}
</Link>
) : (
<Link href={link} target="_blank">
<Link href={link} target="_blank" style={{ fontWeight: "bold" }}>
{linkLabel}
</Link>
)}