From 5345ebb72fc244e2b1a06e3819e24b587b988d7c Mon Sep 17 00:00:00 2001 From: Bas van den Aakster Date: Fri, 12 Dec 2025 19:13:23 +0100 Subject: [PATCH] refactor: Update to use poll() instead of pollOffers() --- src/App.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.jsx b/src/App.jsx index 47b68e3..94c4344 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -232,7 +232,7 @@ export default function App() { const poll = async () => { try { - const result = await rondevu.pollOffers(lastAnswerTimestamp); + const result = await rondevu.poll(lastAnswerTimestamp); // Process answers if (result.answers.length > 0) {