add new features and optimizations to simulation and builder modules

This commit is contained in:
2025-03-25 16:35:54 +05:30
parent 2303682a15
commit 1259b5fcc8
18 changed files with 601 additions and 178 deletions

View File

@@ -1,6 +1,6 @@
let url_Backend_dwinzo = `http://${process.env.REACT_APP_SERVER_REST_API_BASE_URL}`;
export const signUp = async (userName: string, email: string, password: Object, organization: Object) => {
export const signUpApi = async (userName: string, email: string, password: Object, organization: Object) => {
try {
const response = await fetch(`${url_Backend_dwinzo}/api/v1/signup`, {
method: "POST",
@@ -11,7 +11,7 @@ export const signUp = async (userName: string, email: string, password: Object,
});
if (!response.ok) {
throw new Error("Failed to signUp");
throw new Error("Failed to signUpApi");
}
const result = await response.json();