Skip to content

Commit

Permalink
fix(desk-tool): fix ts error
Browse files Browse the repository at this point in the history
  • Loading branch information
bjoerge committed Jan 10, 2022
1 parent d1611da commit e6ffed2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const Timeline = ({
onLoadMore,
}: TimelineProps) => {
const rootRef = useRef<HTMLDivElement | null>(null)
const listRef = useRef<HTMLOListElement | null>(null)
const listRef = useRef<HTMLDivElement | null>(null)
const [loadingElement, setLoadingElement] = useState<HTMLDivElement | null>(null)

let state: TimelineItemState = disabledBeforeSelection ? 'disabled' : 'enabled'
Expand Down

0 comments on commit e6ffed2

Please sign in to comment.