From 1e1f02fb2a98eb8dd5798f67567f2e2f1d3e6513 Mon Sep 17 00:00:00 2001 From: Kalle <38327916+Sendouc@users.noreply.github.com> Date: Sat, 30 Apr 2022 11:23:04 +0300 Subject: [PATCH] Fix TS error with import casing --- app/components/Layout/Menu.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/Layout/Menu.tsx b/app/components/Layout/Menu.tsx index abb7eb40d..32d9a49b2 100644 --- a/app/components/Layout/Menu.tsx +++ b/app/components/Layout/Menu.tsx @@ -6,7 +6,7 @@ import { discordUrl, gitHubUrl, patreonUrl, twitterUrl } from "~/utils/urls"; import { Button } from "../Button"; import { CrossIcon } from "../icons/Cross"; import { DiscordIcon } from "../icons/Discord"; -import { GitHubIcon } from "../icons/Github"; +import { GitHubIcon } from "../icons/GitHub"; import { PatreonIcon } from "../icons/Patreon"; import { TwitterIcon } from "../icons/Twitter"; import DrawingSection from "./DrawingSection";