From 165de974465104e2380986a6af814b389ad37fc3 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Fri, 14 Jun 2024 23:16:50 +0530 Subject: [PATCH] chore: lint --- src/components/molecules/BrowserTabs.tsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/components/molecules/BrowserTabs.tsx b/src/components/molecules/BrowserTabs.tsx index 8e2a6a9f..2cda3937 100644 --- a/src/components/molecules/BrowserTabs.tsx +++ b/src/components/molecules/BrowserTabs.tsx @@ -64,7 +64,7 @@ export const BrowserTabs = ( })} - + ); } @@ -81,11 +81,13 @@ const CloseButton = ({ closeTab, disabled }: CloseButtonProps) => { size={"small"} onClick={closeTab} disabled={disabled} - sx={{ height: '34px', - '&:hover': { color: 'white', backgroundColor: '#1976d2' } }} + sx={{ + height: '34px', + '&:hover': { color: 'white', backgroundColor: '#1976d2' } + }} component="span" > - + ); }