From c81ac681a1590e48a337c20b669ad91f32189e80 Mon Sep 17 00:00:00 2001 From: Raymond Camden Date: Tue, 9 Dec 2025 14:54:16 -0600 Subject: [PATCH] Fix typo in timeout property name --- app/server.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/server.js b/app/server.js index 8386a68..1d5ca54 100644 --- a/app/server.js +++ b/app/server.js @@ -110,7 +110,7 @@ server.get("/sites", async (req, reply) => { const webflow = new WebflowClient({ accessToken, // Add rate limiting and timeout options - timeOurInSeconds: 10000, // 10 second timeout + timeoutInSeconds: 10000, // 10 second timeout maxRetries: 3, // Retry up to 3 times });