Skip to content

Commit a43867a

Browse files
committed
fix build errors
Signed-off-by: Adam Setch <[email protected]>
1 parent e766d7c commit a43867a

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

src/renderer/components/notifications/NotificationRow.tsx

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
} from 'react';
88

99
import { BellSlashIcon, CheckIcon, ReadIcon } from '@primer/octicons-react';
10-
import { IconButton, Tooltip } from '@primer/react';
10+
import { IconButton } from '@primer/react';
1111

1212
import { AppContext } from '../../context/App';
1313
import { Opacity, Size } from '../../types';
@@ -95,9 +95,13 @@ export const NotificationRow: FC<INotificationRow> = ({
9595
)}
9696
>
9797
<div className="mr-3 flex items-center justify-center">
98-
<Tooltip text={notificationType} direction="e">
99-
<NotificationIcon size={Size.LARGE} className={iconColor} />
100-
</Tooltip>
98+
{/* <Tooltip text={notificationType} direction="e"> */}
99+
<NotificationIcon
100+
size={Size.LARGE}
101+
className={iconColor}
102+
title={notificationType}
103+
/>
104+
{/* </Tooltip> */}
101105
</div>
102106

103107
<div

src/renderer/routes/Settings.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { type FC, useCallback, useContext, useState } from 'react';
22

33
import { GearIcon } from '@primer/octicons-react';
44
import { Button, Stack } from '@primer/react';
5-
import { Dialog } from '@primer/react/experimental';
5+
import { Dialog } from '@primer/react';
66

77
import { Contents } from '../components/primitives/Contents';
88
import { Header } from '../components/primitives/Header';

0 commit comments

Comments
 (0)