Skip to content

Commit 5c2e2fc

Browse files
committed
fix: eslint problem
1 parent 6b1e4e0 commit 5c2e2fc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/popups/ConfirmWebRTC.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import React, { useEffect } from 'react';
2-
import { useTranslation } from 'react-i18next';
32
import ipc from '@/ipc';
43

54
import MarkdownContent from '@/components/MarkdownContent';
@@ -13,9 +12,10 @@ interface ConfirmWebRTCPopupProps {
1312
userId?: string;
1413
}
1514

15+
// eslint-disable-next-line
1616
const ConfirmWebRTCPopup: React.FC<ConfirmWebRTCPopupProps> = React.memo(({ id, message, userId }) => {
1717
// Hooks
18-
const { t } = useTranslation();
18+
1919

2020
// Handlers
2121
const handleYes = () => {

0 commit comments

Comments
 (0)