From 2202b0f2b4c42884cf7ad5e52e7f646525bcdb54 Mon Sep 17 00:00:00 2001 From: Shekar Siri Date: Thu, 2 Nov 2023 10:32:07 +0100 Subject: [PATCH] change(ui): assist list refresh interval to two minutes --- .../app/components/shared/LiveSessionList/LiveSessionList.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app/components/shared/LiveSessionList/LiveSessionList.tsx b/frontend/app/components/shared/LiveSessionList/LiveSessionList.tsx index 43a9869a6..4b4730cf0 100644 --- a/frontend/app/components/shared/LiveSessionList/LiveSessionList.tsx +++ b/frontend/app/components/shared/LiveSessionList/LiveSessionList.tsx @@ -16,7 +16,7 @@ import cn from 'classnames'; import AnimatedSVG, { ICONS } from 'Shared/AnimatedSVG/AnimatedSVG'; import { numberWithCommas } from 'App/utils'; -const AUTOREFRESH_INTERVAL = 0.5 * 60 * 1000; +const AUTOREFRESH_INTERVAL = 2 * 60 * 1000; const PER_PAGE = 10; interface Props {