diff options
Diffstat (limited to 'source/features/linkify-notification-repository-header.tsx')
-rw-r--r-- | source/features/linkify-notification-repository-header.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/features/linkify-notification-repository-header.tsx b/source/features/linkify-notification-repository-header.tsx index edaafcf7..c89eeb69 100644 --- a/source/features/linkify-notification-repository-header.tsx +++ b/source/features/linkify-notification-repository-header.tsx @@ -7,7 +7,7 @@ import features from '.'; function init(): void { for (const header of select.all('.js-notifications-group h6')) { header.append( - <a className="text-inherit color-fg-inherit" href={'/' + header.textContent!.trim()}> + <a className="color-fg-inherit" href={'/' + header.textContent!.trim()}> {header.firstChild} </a>, ); |