add new features and optimizations to simulation and builder modules
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user