From 0f32f2544d70ce06917f5812b5a429799ee30396 Mon Sep 17 00:00:00 2001 From: Roland Osborne Date: Fri, 2 Sep 2022 10:09:56 -0700 Subject: [PATCH] ignore warning, until cludge can be removed --- net/web/src/session/conversation/topicItem/TopicItem.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/net/web/src/session/conversation/topicItem/TopicItem.jsx b/net/web/src/session/conversation/topicItem/TopicItem.jsx index 733f9ec5..2f643f2f 100644 --- a/net/web/src/session/conversation/topicItem/TopicItem.jsx +++ b/net/web/src/session/conversation/topicItem/TopicItem.jsx @@ -12,9 +12,10 @@ import { useState, useEffect } from 'react'; export function TopicItem({ host, topic }) { const { state, actions } = useTopicItem(topic); - const [render, setRender] = useState(false); // not sure why this helps, on mobile render updates not occuring without + // eslint-disable-next-line + const [render, setRender] = useState(false); useEffect(() => { if (state.ready && state.confirmed) { setRender(true);