Fix Backend Link in OpenMemory (#2677)

This commit is contained in:
Saket Aryan
2025-05-13 21:06:59 +05:30
committed by GitHub
parent f51b39db91
commit c41719ff9a
6 changed files with 6 additions and 6 deletions

View File

@@ -35,7 +35,7 @@ export const useStats = (): UseMemoriesApiReturn => {
const dispatch = useDispatch<AppDispatch>();
const user_id = useSelector((state: RootState) => state.profile.userId);
const URL = process.env.NEXT_PUBLIC_API_URL || "http://localhost:8000";
const URL = process.env.NEXT_PUBLIC_API_URL || "http://localhost:8765";
const fetchStats = async () => {
setIsLoading(true);