update to use SAAS_BACKEND_URL on the front-end everywhere

This commit is contained in:
Abi Raja 2024-01-10 15:53:41 -08:00
parent f3ca39b40a
commit cddc99dc19

View File

@ -8,6 +8,7 @@ import { useAuthenticatedFetch } from "./useAuthenticatedFetch";
import { useStore } from "../../store/store";
import AvatarDropdown from "./AvatarDropdown";
import { UserResponse } from "./types";
import { SAAS_BACKEND_URL } from "../../config";
function AppContainer() {
const [showPopup, setShowPopup] = useState(false);
@ -36,8 +37,7 @@ function AppContainer() {
// TODO: Handle when the user is not signed in
const user: UserResponse = await authenticatedFetch(
"https://screenshot-to-code-saas.onrender.com/users/create",
// "http://localhost:8001/users/create",
SAAS_BACKEND_URL + "/users/create",
"POST"
);