From 81d8ed374f4cc0f2b8e333d75e888c6ec20e2af9 Mon Sep 17 00:00:00 2001 From: bodie Date: Mon, 10 Apr 2023 15:32:48 +0200 Subject: [PATCH] #62: remove trailing space from filename --- src/App.tsx | 2 +- src/components/Navigation.tsx | 2 +- src/pages/{HomePage .tsx => HomePage.tsx} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename src/pages/{HomePage .tsx => HomePage.tsx} (100%) diff --git a/src/App.tsx b/src/App.tsx index 72f7956..6d567a5 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -6,7 +6,7 @@ import { } from "react-router-dom"; import { faExclamationTriangle, faBars, faSearch } from '@fortawesome/free-solid-svg-icons' import { library } from '@fortawesome/fontawesome-svg-core' -import HomePage from './pages/HomePage '; +import HomePage from './pages/HomePage'; import i18n from './i18n'; import { withTranslation } from 'react-i18next'; import Navigation from './components/Navigation'; diff --git a/src/components/Navigation.tsx b/src/components/Navigation.tsx index c14cc0d..e8e6a60 100644 --- a/src/components/Navigation.tsx +++ b/src/components/Navigation.tsx @@ -2,7 +2,7 @@ import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' import React, { useState, useEffect } from 'react' import { Link, useNavigate, useLocation } from 'react-router-dom' import { HashLink } from 'react-router-hash-link' -import { StartPage } from '../pages/HomePage ' +import { StartPage } from '../pages/HomePage' import { ChapterT } from './Chapter' import SearchInput from './SearchInput' import { SectionT } from './Section' diff --git a/src/pages/HomePage .tsx b/src/pages/HomePage.tsx similarity index 100% rename from src/pages/HomePage .tsx rename to src/pages/HomePage.tsx