diff --git a/apps/web/src/components/editor/index.tsx b/apps/web/src/components/editor/index.tsx index 78292f3a5..ac7d47865 100644 --- a/apps/web/src/components/editor/index.tsx +++ b/apps/web/src/components/editor/index.tsx @@ -252,16 +252,6 @@ const MemoizedEditorView = React.memo(EditorView, (prev, next) => { prev.session.activeSearchResultId === next.session.activeSearchResultId && prev.session.nonce === next.session.nonce; - if ( - "attachmentsLength" in prev.session && - "attachmentsLength" in next.session - ) { - return ( - baseConditions && - prev.session.attachmentsLength === next.session.attachmentsLength - ); - } - if ("note" in prev.session && "note" in next.session) { return ( baseConditions &&