Attempt to fix type issues

This commit is contained in:
Justin Hutchings
2024-03-03 05:43:20 +00:00
parent bf2683a10c
commit 764e39e792
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -75,7 +75,7 @@ async function getDepsDevProjectData(
const response = await fetch(url)
if (response.ok) {
const data = await response.json()
return data
return DepsDevProjectSchema.parse(data)
} else {
throw new Error(
`Failed to fetch project data with status code: ${response.status}`