fix(ui) - button cursor pointer

This commit is contained in:
Shekar Siri 2022-02-24 18:51:18 +01:00
parent db2b430733
commit b190428780

View file

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