Skip to content

Commit

Permalink
fix type errors
Browse files Browse the repository at this point in the history
  • Loading branch information
blackforestboi committed Jul 30, 2024
1 parent d398a5c commit 3b75186
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/common-ui/components/result-item-spaces-segment.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export default function ListsSegment({
key={space.id}
onMouseDown={(event: React.MouseEvent) => {
event.stopPropagation()
onListClick(space.id, event)
onListClick(space.id)
}}
onMouseUp={(event: React.MouseEvent) => {
event.stopPropagation()
Expand Down Expand Up @@ -192,7 +192,6 @@ const loading = keyframes`
`

const ListSpaceContainer = styled.div<{
onClick: React.MouseEventHandler
isLoading: boolean
spaceId: number
}>`
Expand Down

0 comments on commit 3b75186

Please sign in to comment.