This commit is contained in:
Андрей Дувакин 2024-10-28 10:20:30 +05:00
parent f3fc5ba139
commit 3bc664d223
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
import axios from "axios";
const API_URL = "https://api.logistics.numerum.site/api";
const API_URL = process.env.REACT_APP_API_URL;
export const getAuthToken = () => {
return localStorage.getItem("token");

View File

@ -1,6 +1,6 @@
import axios from "axios";
const API_KEY = "d101001e-49f5-4a17-ac39-2d67f64b3f9b";
const API_KEY = process.env.REACT_APP_API_KEY;
export const getCoordinates = async (city) => {
try {