LibreChat/client/src/store/temporary.ts
Marco Beretta 70e410f38b
💬 fix: Temporary Chat PR's broken components and improved UI (#5705)
* 💬 fix: Temporary Chat PR's broken components and improved UI

* 💬 fix: bring back hover effect on AudioRecorder button

* style: adjust position of Mention component popover

* refactor: PromptsCommand typing and style position

* refactor: virtualize mention UI

---------

Co-authored-by: Danny Avila <danny@librechat.ai>
2025-02-06 20:15:38 -05:00

7 lines
155 B
TypeScript

import { atomWithLocalStorage } from '~/store/utils';
const isTemporary = atomWithLocalStorage('isTemporary', false);
export default {
isTemporary,
};