updated api and socket for builder and visualization

This commit is contained in:
2025-06-04 11:55:59 +05:30
parent 44b6b4daab
commit 0d98892dff
109 changed files with 1382 additions and 788 deletions

View File

@@ -7,6 +7,7 @@ import { retrieveGLTF, storeGLTF } from '../../../utils/indexDB/idbUtils';
async function loadInitialWallItems(
setWallItems: Types.setWallItemSetState,
projectId?:string
): Promise<void> {
try {
const email = localStorage.getItem('email');
@@ -15,7 +16,7 @@ async function loadInitialWallItems(
}
const organization = email.split("@")[1].split(".")[0];
const items = await getWallItems(organization);
const items = await getWallItems(organization,projectId);
let url_Backend_dwinzo = `http://${process.env.REACT_APP_SERVER_MARKETPLACE_URL}`;