Skip to content

Commit cf54b5f

Browse files
Links in the notification center navigate to a non existing docs
1 parent 236d84d commit cf54b5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/shared/notification-center/NotificationData.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export default function NotificationData(props: NotificationDataProps) {
2727
return (<div className="ml-3 w-full">
2828
<div className="flex">
2929
<h3 className={`text-sm font-medium text-${props.textColor}-800`}>
30-
<a className="underline mr-1" href={props.notification[0].docs} target="_blank" >{props.notification[0].title}</a>
30+
<span className="mr-1" >{props.notification[0].title}</span>
3131
({props.notification[0].date}
3232
{props.notification[0].projectId && <span>&nbsp;in&nbsp;
3333
<button className="underline" onClick={() => {

0 commit comments

Comments
 (0)