Skip to content

Commit

Permalink
ESCKAN-77 Remove unnecessary formatting diff
Browse files Browse the repository at this point in the history
  • Loading branch information
dvcorreia committed Nov 15, 2024
1 parent 77477d8 commit 11e7b43
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/components/common/CustomFilterDropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -509,17 +509,12 @@ export default function CustomEntitiesDropdown({
checked={isOptionSelected(option)}
/>
<Typography
sx={{
width: 1,
height: 1,
padding: '0.625rem',
}}
sx={{ width: 1, height: 1, padding: '0.625rem' }}
>
{option?.label?.length > 100
? option?.label.slice(0, 100) + '...'
: option?.label}
</Typography>

{/* <Typography whiteSpace="nowrap" variant="body2">
{option?.id}
</Typography> */}
Expand Down

0 comments on commit 11e7b43

Please sign in to comment.