added q-manager default

This commit is contained in:
PhilReact 2024-12-01 15:08:20 +02:00
parent a85e451d2f
commit 729c8e002a
8 changed files with 15 additions and 6 deletions

View File

@ -36,6 +36,10 @@ export const sortablePinnedAppsAtom = atom({
{ {
name: 'NodeInfo', name: 'NodeInfo',
service: 'APP' service: 'APP'
},
{
name: 'Q-Manager',
service: 'APP'
} }
], ],
}); });

View File

@ -3057,7 +3057,7 @@ const checkGroupList = async () => {
try { try {
const wallet = await getSaveWallet(); const wallet = await getSaveWallet();
const address = wallet.address0; 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, { const response = await fetch(url, {
method: "GET", method: "GET",
headers: { headers: {

View File

@ -41,7 +41,8 @@ const officialAppList = [
"q-shop", "q-shop",
"q-trade", "q-trade",
"q-support", "q-support",
"nodeinfo" "nodeinfo",
"q-manager"
]; ];
const ScrollerStyled = styled('div')({ const ScrollerStyled = styled('div')({

View File

@ -49,7 +49,8 @@ const officialAppList = [
"q-shop", "q-shop",
"q-trade", "q-trade",
"q-support", "q-support",
"nodeinfo" "nodeinfo",
"q-manager"
]; ];
const ScrollerStyled = styled("div")({ const ScrollerStyled = styled("div")({

View File

@ -43,7 +43,8 @@ const officialAppList = [
"q-shop", "q-shop",
"q-trade", "q-trade",
"q-support", "q-support",
"nodeinfo" "nodeinfo",
"q-manager"
]; ];
const ScrollerStyled = styled('div')({ const ScrollerStyled = styled('div')({

View File

@ -58,7 +58,8 @@ const officialAppList = [
"q-shop", "q-shop",
"q-trade", "q-trade",
"q-support", "q-support",
"nodeinfo" "nodeinfo",
"q-manager"
]; ];
const ScrollerStyled = styled("div")({ const ScrollerStyled = styled("div")({

View File

@ -20,6 +20,7 @@ import { getFee } from "../../background";
import RefreshIcon from "@mui/icons-material/Refresh"; import RefreshIcon from "@mui/icons-material/Refresh";
import { Spacer } from "../../common/Spacer"; import { Spacer } from "../../common/Spacer";
import OpenInNewIcon from "@mui/icons-material/OpenInNew"; import OpenInNewIcon from "@mui/icons-material/OpenInNew";
import { CustomLoader } from "../../common/CustomLoader";
export const PollCard = ({ export const PollCard = ({

View File

@ -58,7 +58,7 @@ export const WebSocketActive = ({ myAddress, setIsLoadingGroups }) => {
pauseAllQueues() 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 = new WebSocket(socketLink);
socketRef.current.onopen = () => { socketRef.current.onopen = () => {