chore: lint

This commit is contained in:
karishmas6
2024-10-19 04:23:22 +05:30
parent 24877d1d4a
commit 06d8b83595

View File

@@ -46,8 +46,8 @@ export const BrowserTabs = (
<Tab
key={`tab-${index}`}
id={`tab-${index}`}
sx={{
background: 'white',
sx={{
background: 'white',
borderTopLeftRadius: index === 0 ? '20px' : 0, // For the first tab
borderTopRightRadius: index === tabs.length - 1 ? '20px' : 0, // For the last tab
transition: 'border-radius 0.2s ease',
@@ -70,7 +70,7 @@ export const BrowserTabs = (
})}
</Tabs>
</Box>
<AddButton handleClick={handleAddNewTab} style={{ background: 'white'}} />
<AddButton handleClick={handleAddNewTab} style={{ background: 'white' }} />
</Box>
);
}