From 9db68380e8ca971a8b1ea87741e15611abb9a433 Mon Sep 17 00:00:00 2001 From: Rahul Harpal <51887323+rahulharpal1603@users.noreply.github.com> Date: Tue, 23 Jul 2024 22:45:27 +0530 Subject: [PATCH] Replaced var with let - 2 --- docs/src/components/HomepageSponsored/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/components/HomepageSponsored/index.tsx b/docs/src/components/HomepageSponsored/index.tsx index 54dcedba..10c69dda 100644 --- a/docs/src/components/HomepageSponsored/index.tsx +++ b/docs/src/components/HomepageSponsored/index.tsx @@ -51,7 +51,7 @@ const SponsorList: SponsorItem[] = [ ] function Feature({ title, Svg, link }: FeatureItem) { - var classVar = styles.featureSvg; + let classVar = styles.featureSvg; if(Svg === require('@site/static/img/Algolia-logo.svg').default) { classVar = styles.featureSvg +" "+ styles.AlgoliaLogo;