diff --git a/src/components/OfflineIndicator.jsx b/src/components/OfflineIndicator.jsx index 16ff27c3..5f017117 100644 --- a/src/components/OfflineIndicator.jsx +++ b/src/components/OfflineIndicator.jsx @@ -3,7 +3,7 @@ import { useSubplebbit } from "@plebbit/plebbit-react-hooks"; const OfflineIndicator = ({ address, className, tooltipPlace }) => { const subplebbit = useSubplebbit({ subplebbitAddress: address }); - const isOnline = false; + const isOnline = subplebbit.updatedAt > Date.now() / 1000 - 60 * 20; return ( <>