Skip to content

Commit 88f8c5e

Browse files
committed
fix: 사용하지 않는 함수, props 제거
1 parent 63c90e9 commit 88f8c5e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/Header/Header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { useCallback, useState } from 'react';
1+
import { useState } from 'react';
22
import { useNavigate, useLocation } from 'react-router';
33
import * as S from './Header.styled';
44
import Popup from '../Popup/Popup';

src/pages/Main/BottomInfo/BottomInfo.styles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export const NotificationContainer = styled.div<{ $isMobile: boolean; $isTablet:
105105
`;
106106

107107
export const NotificationLink = styled.a<{ $isMobile: boolean; $isTablet: boolean }>`
108-
font-size: ${({ $isMobile, $isTablet }) => ($isMobile ? "10px" : "18px")};
108+
font-size: ${({ $isMobile }) => ($isMobile ? "10px" : "18px")};
109109
color: #333;
110110
text-decoration: none;
111111
font-weight: 500;

0 commit comments

Comments
 (0)