From 30ee974a6173a977f5f27f358f50ed4f0f25300f Mon Sep 17 00:00:00 2001 From: EliteAsian <29520859+EliteAsian123@users.noreply.github.com> Date: Fri, 11 Aug 2023 12:56:47 -0400 Subject: [PATCH] Fixed compiler error --- src/components/Queue/QueueEntry/YARG.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/components/Queue/QueueEntry/YARG.tsx b/src/components/Queue/QueueEntry/YARG.tsx index f255bad..896c906 100644 --- a/src/components/Queue/QueueEntry/YARG.tsx +++ b/src/components/Queue/QueueEntry/YARG.tsx @@ -2,6 +2,7 @@ import { YARGDownload } from "@app/utils/Download/Processors/YARG"; import BaseQueue from "./base"; import StableYARGIcon from "@app/assets/StableYARGIcon.png"; import NightlyYARGIcon from "@app/assets/NightlyYARGIcon.png"; +import DevYARGIcon from "@app/assets/DevYARGIcon.png"; import { YARGChannels } from "@app/hooks/useYARGRelease"; interface Props { @@ -11,14 +12,15 @@ interface Props { const YARGQueue: React.FC = ({ downloader, bannerMode }: Props) => { - const channelIconPath: {[key in YARGChannels]: string} = { + const channelIconPath: { [key in YARGChannels]: string } = { "stable": StableYARGIcon, - "nightly": NightlyYARGIcon + "nightly": NightlyYARGIcon, + "newEngine": DevYARGIcon }; return } + icon={} version={downloader.version} versionChannel={downloader.channel.toUpperCase()} bannerMode={bannerMode}