Skip to content

Commit

Permalink
Fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
xbgmsharp committed Feb 24, 2024
1 parent 462b0ae commit 991fbf1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/App/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { memo } from "react";
import { GlFooter } from "gitlanding/GlFooter";
import { routes } from "router";
//import { routes } from "router";
import { declareComponentKeys, useTranslation } from "i18n";


Expand Down
2 changes: 1 addition & 1 deletion src/App/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const Header = memo(() => {
const { t } = useTranslation({ Header })
const { lang, setLang } = useLang();
return <GlHeader
title={<a {...routes.home().link}><h1><img src="./PostgsailLogo.svg" alt="SVG as an image" height={48}/></h1></a>}
title={<a {...routes.home().link}><h1><img src="./PostgsailLogo.svg" height={48}/></h1></a>}
links={[
{
"label": t("link2label"),
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import demoGif from "assets/img/demo.gif";
import timelapsePng from "assets/img/timelapse.png";
import monitoringPng from "assets/img/monitoring.png";
import logsPng from "assets/img/logs.png";
import mapPng from "assets/img/map.png";
//import mapPng from "assets/img/map.png";
import statsPng from "assets/img/stats.png";

export const Home = memo(() => {
Expand Down

0 comments on commit 991fbf1

Please sign in to comment.