Shyamnath's picture
Push UI dashboard and deployment files
c40c75a
raw
history blame contribute delete
376 Bytes
import { getProxyUISettings } from "@/components/networking";
export const fetchProxySettings = async (accessToken: string | null) => {
if (!accessToken) return null;
try {
const proxySettings = await getProxyUISettings(accessToken);
return proxySettings;
} catch (error) {
console.error("Error fetching proxy settings:", error);
return null;
}
};