aboutsummaryrefslogtreecommitdiffstats
path: root/web/lib/api.ts
diff options
context:
space:
mode:
Diffstat (limited to 'web/lib/api.ts')
-rw-r--r--web/lib/api.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/lib/api.ts b/web/lib/api.ts
index 12ce9464..2304826b 100644
--- a/web/lib/api.ts
+++ b/web/lib/api.ts
@@ -35,8 +35,8 @@ async function doRequest<T>(
opts?: RequestInit,
): Promise<
| (InputSchema<T> extends ZodTypeAny
- ? [z.infer<InputSchema<T>>, undefined]
- : [undefined, undefined])
+ ? [z.infer<InputSchema<T>>, undefined]
+ : [undefined, undefined])
| [undefined, FetchError]
> {
try {