fix: remove harcoded api url
All checks were successful
Bump Dependencies / update-dependencies (push) Successful in 1m8s
Build and Push Nightly CI Image / build_and_push (push) Successful in 1m58s
Build and Push Docker Image / build_and_push (push) Successful in 4s

This commit is contained in:
Aidan 2025-02-20 22:48:41 -05:00
parent 6efc4a2b32
commit ddf16ef013

View File

@ -22,8 +22,6 @@ export default function Dashboard() {
gitFollowingCt: 0,
gitAvatar: "",
gitLastLogin: "",
gitProfileCardLoading: true,
gitProfileCardError: false,
gitIsAdmin: false,
gitEmail: "",
showRunSecurityCheckBtn: true,
@ -33,7 +31,7 @@ export default function Dashboard() {
useEffect(() => {
const checkGitLinkStatus = async () => {
try {
const response = await fetch("http://localhost:3000/api/git/user")
const response = await fetch("/api/git/user")
if (response.ok) {
const data = await response.json()
@ -46,18 +44,12 @@ export default function Dashboard() {
gitFollowingCt: data.following_count || 0,
gitIsAdmin: data.is_admin || false,
gitEmail: data.email || "",
gitProfileCardLoading: false,
}))
} else {
throw new Error("Failed to fetch Gitea account details");
}
} catch (error) {
console.error("Error fetching your Gitea user data:", error);
setDashboardState((prev) => ({
...prev,
gitProfileCardError: true,
gitProfileCardLoading: false,
}))
}
}