Merge remote-tracking branch 'upstream/dev' into fix/onboarding

This commit is contained in:
Anish Sarkar 2026-07-14 10:18:03 +05:30
commit 2d837ea18c
185 changed files with 4729 additions and 3630 deletions

View file

@ -0,0 +1,11 @@
import { atomWithStorage } from "jotai/utils";
/**
* Per-device preference: show a timestamp under each chat message.
*
* Off by default to match streaming-AI chat convention (ChatGPT/Claude keep
* the message stream clean and put time in the conversation list). Persisted
* in localStorage, so it does not sync across devices acceptable for a
* cosmetic display toggle.
*/
export const showMessageTimestampsAtom = atomWithStorage<boolean>("chat-show-timestamps:v1", false);