mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-29 14:48:51 +01:00
* 💬 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>
7 lines
155 B
TypeScript
7 lines
155 B
TypeScript
import { atomWithLocalStorage } from '~/store/utils';
|
|
|
|
const isTemporary = atomWithLocalStorage('isTemporary', false);
|
|
|
|
export default {
|
|
isTemporary,
|
|
};
|