Skip to content

Commit

Permalink
update ts expect error
Browse files Browse the repository at this point in the history
  • Loading branch information
JeanMarcMilletScality committed Oct 31, 2024
1 parent c02c2f7 commit aa40621
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/lib/components/tabsv2/Tabsv2.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,6 @@ function Tabs({
return (
<TabsContext.Provider value={true}>
<TabsContainer
// @ts-expect-error containerType is not yet a valid prop for react
style={{ containerType: 'size' }}
className={['sc-tabs', className].join(' ')}
tabLineColor={tabLineColor}
Expand Down
5 changes: 3 additions & 2 deletions src/lib/organisms/attachments/AttachmentTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ const MenuContainer = styled.ul<{
border: 1px solid ${props.theme.selectedActive};
`
: props.searchInputIsFocused
? `border-bottom: 1px solid ${props.theme.selectedActive};`
: ''}
? `border-bottom: 1px solid ${props.theme.selectedActive};`
: ''}
border-top: 0;
li {
padding: ${spacing.r8};
Expand Down Expand Up @@ -497,6 +497,7 @@ export const AttachmentTable = <
flex: 1.5,
marginRight: '1.5rem',
},
//@ts-expect-error
Cell: ({
value,
row: { original: entity },
Expand Down

0 comments on commit aa40621

Please sign in to comment.