repo details page working completely

This commit is contained in:
2026-05-07 13:26:11 +02:00
parent 12bcf59bc9
commit ec309eb626
26 changed files with 954 additions and 5 deletions
+1
View File
@@ -65,6 +65,7 @@ async function request<T>(
throw new ApiError(res.status, message)
}
if (res.status === 204) return schema.parse(null)
const data = await res.json()
return schema.parse(data)
}