1
0
mirror of https://github.com/spacebarchat/client.git synced 2024-11-22 10:22:30 +01:00

temporarily disable member list fetching

This commit is contained in:
Puyodead1 2023-12-05 16:22:15 -05:00
parent a6ff9927d4
commit 9819c8d2f6
No known key found for this signature in database
GPG Key ID: A4FA4FEC0DD353FC

View File

@ -1,6 +1,4 @@
import { runInAction } from "mobx";
import { observer } from "mobx-react-lite";
import React from "react";
import styled from "styled-components";
import useLogger from "../../hooks/useLogger";
import { useAppStore } from "../../stores/AppStore";
@ -81,13 +79,13 @@ function Chat() {
const app = useAppStore();
const logger = useLogger("Messages");
React.useEffect(() => {
if (!app.activeChannel || !app.activeGuild || app.activeChannelId === "@me") return;
// React.useEffect(() => {
// if (!app.activeChannel || !app.activeGuild || app.activeChannelId === "@me") return;
runInAction(() => {
app.gateway.onChannelOpen(app.activeGuildId!, app.activeChannelId!);
});
}, [app.activeChannel, app.activeGuild]);
// runInAction(() => {
// app.gateway.onChannelOpen(app.activeGuildId!, app.activeChannelId!);
// });
// }, [app.activeChannel, app.activeGuild]);
if (app.activeGuildId && app.activeGuildId === "@me") {
return (