diff --git a/memento-note/app/(main)/settings/integrations/page.tsx b/memento-note/app/(main)/settings/integrations/page.tsx index 6308b6e..9c871c5 100644 --- a/memento-note/app/(main)/settings/integrations/page.tsx +++ b/memento-note/app/(main)/settings/integrations/page.tsx @@ -236,18 +236,19 @@ export default function IntegrationsPage() { {loading ? : } + + {!rwConnected && (
-
(note.reminder ? new Date(note.reminder) : null) const sanitizedHtml = useMemo(() => { - if (note.type !== 'richtext' || !note.content) return '' + if ((note.type !== 'richtext' && note.type !== 'daily') || !note.content) return '' return DOMPurify.sanitize(note.content) }, [note.type, note.content]) @@ -692,7 +692,7 @@ export const NoteCard = memo(function NoteCard({ items={localCheckItems || optimisticNote.checkItems || note.checkItems || []} onToggleItem={handleCheckItem} /> - ) : note.type === 'richtext' ? ( + ) : (note.type === 'richtext' || note.type === 'daily') ? (
) : (