make headers optional?

This commit is contained in:
Kendall Garner
2024-09-16 19:57:59 -07:00
parent 730683fe25
commit 4c49e403ab
+1 -1
View File
@@ -242,7 +242,7 @@ export const ssApiClient = (args: {
return { return {
body: response?.data, body: response?.data,
headers: response.headers as any, headers: response?.headers as any,
status: response?.status, status: response?.status,
}; };
} }