From f8aa630274a8133c851504b679c887132386e80e Mon Sep 17 00:00:00 2001 From: vvu060 Date: Thu, 18 Jan 2024 10:35:08 +0530 Subject: [PATCH] Remove unused code in LinkButton component --- src/components/shared/LinkButton.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/components/shared/LinkButton.tsx b/src/components/shared/LinkButton.tsx index bd74a73575..2595a36ad8 100644 --- a/src/components/shared/LinkButton.tsx +++ b/src/components/shared/LinkButton.tsx @@ -20,21 +20,18 @@ const LinkButton = ({title, Icon, theme, onClick, href, width, disabled}: LinkBu [Theme.Light]: { classes: "border-2 border-solid border-tailCall-border-dark-100 text-tailCall-dark-500 bg-transparent hover:text-tailCall-dark-500", - gridClasses: "", }, [Theme.Dark]: { classes: "border-2 border-solid border-tailCall-border-dark-100 text-tailCall-light-100 bg-white hover:text-tailCall-light-100", - gridClasses: "", }, [Theme.Gray]: { classes: "border-2 border-solid border-tailCall-light-100 text-tailCall-light-100 bg-transparent hover:text-tailCall-light-100", - gridClasses: "hidden", }, } - return themes[theme] || {classes: "", styles: "", gridClasses: ""} + return themes[theme] || {classes: ""} } const renderBackgroundElements = () => {