From c6e560af0b40de28545b2f0189d07353c14e65c5 Mon Sep 17 00:00:00 2001 From: Sasha <118575614+weboko@users.noreply.github.com> Date: Wed, 27 Sep 2023 12:41:35 +0200 Subject: [PATCH] chore: revert time change (#276) --- examples/web-chat/src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/web-chat/src/App.tsx b/examples/web-chat/src/App.tsx index 6eb3df6..00101a2 100644 --- a/examples/web-chat/src/App.tsx +++ b/examples/web-chat/src/App.tsx @@ -9,7 +9,7 @@ import { useMessages, usePersistentNick } from "./hooks"; const startTime = new Date(); // Only retrieve a week of history -startTime.setTime(Date.now() - 1000 * 60 * 30); +startTime.setTime(Date.now() - 1000 * 60 * 60 * 24 * 7); const endTime = new Date(); export default function App() {