From acdd3596bc7cd531cc1c10a658edc54b1d1cb93f Mon Sep 17 00:00:00 2001 From: Shekar Siri Date: Mon, 16 May 2022 17:05:23 +0200 Subject: [PATCH] fix(ui) - assist reload remove click event params --- .../shared/LiveSessionReloadButton/LiveSessionReloadButton.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app/components/shared/LiveSessionReloadButton/LiveSessionReloadButton.tsx b/frontend/app/components/shared/LiveSessionReloadButton/LiveSessionReloadButton.tsx index ab47fc054..395f2b77e 100644 --- a/frontend/app/components/shared/LiveSessionReloadButton/LiveSessionReloadButton.tsx +++ b/frontend/app/components/shared/LiveSessionReloadButton/LiveSessionReloadButton.tsx @@ -10,7 +10,7 @@ interface Props { function LiveSessionReloadButton(props: Props) { const { loading } = props return ( - + props.fetchLiveList()} className="cursor-pointer" /> ) }