fixed some bug

This commit is contained in:
Ren Amamiya
2023-03-24 11:08:36 +07:00
parent 47f6e6833b
commit e2fa8cbe03
3 changed files with 6 additions and 4 deletions

View File

@@ -17,7 +17,7 @@ export const NoteConnector = memo(function NoteConnector() {
const [relays] = useAtom(relaysAtom);
const [activeAccount] = useAtom(activeAccountAtom);
const [isOnline] = useState(navigator.onLine);
const [isOnline] = useState(true);
const now = useRef(new Date());
useEffect(() => {