From 3ccfacea81fc110c15830c87293c211e5d9317e4 Mon Sep 17 00:00:00 2001 From: Sasha Date: Wed, 27 Sep 2023 12:28:16 +0200 Subject: [PATCH] revert time change --- 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() {