From c609c19a75bcac385bc47d9e8a7946edd61922dc Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Thu, 6 Jul 2023 22:28:37 +0900 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=90=9B=20fix(utils.ts):=20fix=20typo?= =?UTF-8?q?=20in=20utils.ts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/frontend/src/utils.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/frontend/src/utils.ts b/src/frontend/src/utils.ts index 2ce076783..321aa9514 100644 --- a/src/frontend/src/utils.ts +++ b/src/frontend/src/utils.ts @@ -12,7 +12,7 @@ import { FBIcon } from "./icons/FacebookMessenger"; import { GitBookIcon } from "./icons/GitBook"; import { GoogleIcon } from "./icons/Google"; import { HackerNewsIcon } from "./icons/hackerNews"; -import { HugginFaceIcon } from "./icons/HuggingFace"; +import { HuggingFaceIcon } from "./icons/HuggingFace"; import { IFixIcon } from "./icons/IFixIt"; import { MetaIcon } from "./icons/Meta"; import { MidjourneyIcon } from "./icons/Midjorney"; @@ -197,10 +197,10 @@ export const nodeIconsLucide: { HNLoader: HackerNewsIcon as React.ForwardRefExoticComponent< ComponentType> >, - HuggingFaceHub: HugginFaceIcon as React.ForwardRefExoticComponent< + HuggingFaceHub: HuggingFaceIcon as React.ForwardRefExoticComponent< ComponentType> >, - HuggingFaceEmbeddings: HugginFaceIcon as React.ForwardRefExoticComponent< + HuggingFaceEmbeddings: HuggingFaceIcon as React.ForwardRefExoticComponent< ComponentType> >, IFixitLoader: IFixIcon as React.ForwardRefExoticComponent< From 7cbba9eede2efb16c51271330cfcb09002049d99 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Tue, 11 Jul 2023 02:34:35 +0900 Subject: [PATCH 2/2] fix(icons): fix typo in index.tsx HugginFaceIcon -> HuggingFaceIcon --- src/frontend/src/icons/HuggingFace/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/src/icons/HuggingFace/index.tsx b/src/frontend/src/icons/HuggingFace/index.tsx index 44fc68609..36599e0f6 100644 --- a/src/frontend/src/icons/HuggingFace/index.tsx +++ b/src/frontend/src/icons/HuggingFace/index.tsx @@ -1,7 +1,7 @@ import React, { forwardRef } from "react"; import { ReactComponent as HugginFaceSVG } from "./hf-logo.svg"; -export const HugginFaceIcon = forwardRef< +export const HuggingFaceIcon = forwardRef< SVGSVGElement, React.PropsWithChildren<{}> >((props, ref) => {