diff --git a/examples/web-chat/src/App.tsx b/examples/web-chat/src/App.tsx index 00101a2..6eb3df6 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 * 60 * 24 * 7); +startTime.setTime(Date.now() - 1000 * 60 * 30); const endTime = new Date(); export default function App() {