Skip to content

Commit 4a0b783

Browse files
committed
Fix ESLint errors for CI build
- Remove unused HeartFilled import from Footer.tsx - Remove unused MenuOutlined import from Header.tsx - Remove unused PlayCircleOutlined import from Hero.tsx - Resolves CI build failure caused by treating warnings as errors - Build now passes without any ESLint warnings
1 parent 31a45d9 commit 4a0b783

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

src/components/Footer/Footer.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ import {
44
GithubOutlined,
55
TwitterOutlined,
66
LinkedinOutlined,
7-
MailOutlined,
8-
HeartFilled
7+
MailOutlined
98
} from '@ant-design/icons';
109
import { useTranslation } from 'react-i18next';
1110
import './Footer.css';

src/components/Header/Header.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import React from 'react';
22
import { Layout, Menu, Button } from 'antd';
3-
import { MenuOutlined } from '@ant-design/icons';
43
import { useTranslation } from 'react-i18next';
54
import LanguageSwitcher from '../LanguageSwitcher/LanguageSwitcher';
65
import GitHubBadge from '../GitHubBadge/GitHubBadge';

src/components/Hero/Hero.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import { Button, Typography, Space, Badge } from 'antd';
33
import {
44
RocketOutlined,
55
GithubOutlined,
6-
PlayCircleOutlined,
76
ThunderboltOutlined,
87
BranchesOutlined,
98
ClockCircleOutlined,

0 commit comments

Comments
 (0)