fix type errors

This commit is contained in:
Clément Le Bihan
2023-09-19 02:24:26 +02:00
parent dcca1b1f1c
commit e817021ede
5 changed files with 6 additions and 4 deletions
+2 -1
View File
@@ -29,8 +29,9 @@ const TabNavigationButton = (props: TabNavigationButtonProps) => {
alignItems: 'center',
justifyContent: 'flex-start',
padding: '10px',
borderRadius: '8px',
borderRadius: 8,
flexGrow: 0,
// @ts-expect-error BoxShadow is not in the types but I want it this may be a legitimate error on my part
boxShadow: (() => {
if (isHovered) {
return '0px 0px 16px 0px rgba(0, 0, 0, 0.25)';