From 9d2d115bd21a3110dc2ab1b370e4ac18ff84a820 Mon Sep 17 00:00:00 2001 From: Christian Vidal Wolf Date: Fri, 16 Jan 2026 14:22:38 +0100 Subject: [PATCH] fix: resolve syntax error in dropbox proxy --- api/dropbox/[...path].ts | 1 - 1 file changed, 1 deletion(-) diff --git a/api/dropbox/[...path].ts b/api/dropbox/[...path].ts index 3d030e9..310d208 100644 --- a/api/dropbox/[...path].ts +++ b/api/dropbox/[...path].ts @@ -60,7 +60,6 @@ export default async function handler(req: VercelRequest, res: VercelResponse) { const data = await response.text(); res.status(200).send(data); - } catch (error) { } catch (error: any) { console.error('Proxy Error:', error); res.status(500).json({ error: 'Failed to fetch data from Dropbox', details: error.message });