mirror of
https://github.com/Qortal/Qortal-Hub.git
synced 2025-04-20 10:05:56 +00:00
added q-manager default
This commit is contained in:
parent
a85e451d2f
commit
729c8e002a
@ -36,6 +36,10 @@ export const sortablePinnedAppsAtom = atom({
|
||||
{
|
||||
name: 'NodeInfo',
|
||||
service: 'APP'
|
||||
},
|
||||
{
|
||||
name: 'Q-Manager',
|
||||
service: 'APP'
|
||||
}
|
||||
],
|
||||
});
|
||||
|
@ -3057,7 +3057,7 @@ const checkGroupList = async () => {
|
||||
try {
|
||||
const wallet = await getSaveWallet();
|
||||
const address = wallet.address0;
|
||||
const url = await createEndpoint(`/chat/active/${address}`);
|
||||
const url = await createEndpoint(`/chat/active/${address}?encoding=BASE64&haschatreference=false`);
|
||||
const response = await fetch(url, {
|
||||
method: "GET",
|
||||
headers: {
|
||||
|
@ -41,7 +41,8 @@ const officialAppList = [
|
||||
"q-shop",
|
||||
"q-trade",
|
||||
"q-support",
|
||||
"nodeinfo"
|
||||
"nodeinfo",
|
||||
"q-manager"
|
||||
];
|
||||
|
||||
const ScrollerStyled = styled('div')({
|
||||
|
@ -49,7 +49,8 @@ const officialAppList = [
|
||||
"q-shop",
|
||||
"q-trade",
|
||||
"q-support",
|
||||
"nodeinfo"
|
||||
"nodeinfo",
|
||||
"q-manager"
|
||||
];
|
||||
|
||||
const ScrollerStyled = styled("div")({
|
||||
|
@ -43,7 +43,8 @@ const officialAppList = [
|
||||
"q-shop",
|
||||
"q-trade",
|
||||
"q-support",
|
||||
"nodeinfo"
|
||||
"nodeinfo",
|
||||
"q-manager"
|
||||
];
|
||||
|
||||
const ScrollerStyled = styled('div')({
|
||||
|
@ -58,7 +58,8 @@ const officialAppList = [
|
||||
"q-shop",
|
||||
"q-trade",
|
||||
"q-support",
|
||||
"nodeinfo"
|
||||
"nodeinfo",
|
||||
"q-manager"
|
||||
];
|
||||
|
||||
const ScrollerStyled = styled("div")({
|
||||
|
@ -20,6 +20,7 @@ import { getFee } from "../../background";
|
||||
import RefreshIcon from "@mui/icons-material/Refresh";
|
||||
import { Spacer } from "../../common/Spacer";
|
||||
import OpenInNewIcon from "@mui/icons-material/OpenInNew";
|
||||
import { CustomLoader } from "../../common/CustomLoader";
|
||||
|
||||
|
||||
export const PollCard = ({
|
||||
|
@ -58,7 +58,7 @@ export const WebSocketActive = ({ myAddress, setIsLoadingGroups }) => {
|
||||
pauseAllQueues()
|
||||
|
||||
}
|
||||
const socketLink = `${getBaseApiReactSocket()}/websockets/chat/active/${currentAddress}?encoding=BASE64`;
|
||||
const socketLink = `${getBaseApiReactSocket()}/websockets/chat/active/${currentAddress}?encoding=BASE64&haschatreference=false`;
|
||||
socketRef.current = new WebSocket(socketLink);
|
||||
|
||||
socketRef.current.onopen = () => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user