Skip to content

Commit

Permalink
chore: revert time change (#276)
Browse files Browse the repository at this point in the history
  • Loading branch information
weboko authored Sep 27, 2023
1 parent 1ec5072 commit c6e560a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/web-chat/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit c6e560a

Please sign in to comment.