fix(ui) - assist reload remove click event params

This commit is contained in:
Shekar Siri 2022-05-16 17:05:23 +02:00
parent 76d9d41ed8
commit acdd3596bc

View file

@ -10,7 +10,7 @@ interface Props {
function LiveSessionReloadButton(props: Props) {
const { loading } = props
return (
<ReloadButton loading={loading} onClick={props.fetchLiveList} className="cursor-pointer" />
<ReloadButton loading={loading} onClick={() => props.fetchLiveList()} className="cursor-pointer" />
)
}