mirror of
https://github.com/docmost/docmost.git
synced 2025-11-17 12:01:10 +10:00
fix comments
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
import { atom } from 'jotai';
|
||||
|
||||
export const showCommentPopupAtom = atom(false);
|
||||
export const activeCommentIdAtom = atom<string | null>(null);
|
||||
export const draftCommentIdAtom = atom<string | null>(null);
|
||||
export const showCommentPopupAtom = atom<boolean>(false);
|
||||
export const activeCommentIdAtom = atom<string>('');
|
||||
export const draftCommentIdAtom = atom<string>('');
|
||||
|
||||
Reference in New Issue
Block a user