diff --git a/frontend/appflowy_flutter/android/app/src/main/AndroidManifest.xml b/frontend/appflowy_flutter/android/app/src/main/AndroidManifest.xml index 279b17320c..b9a349f2cb 100644 --- a/frontend/appflowy_flutter/android/app/src/main/AndroidManifest.xml +++ b/frontend/appflowy_flutter/android/app/src/main/AndroidManifest.xml @@ -65,4 +65,5 @@ --> + \ No newline at end of file diff --git a/frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/add_attachment_item.dart b/frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/add_attachment_item.dart index a20b727a12..8aa9ca7aac 100644 --- a/frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/add_attachment_item.dart +++ b/frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/add_attachment_item.dart @@ -84,14 +84,11 @@ Future showAddAttachmentMenu( elevation: 20, isScrollControlled: false, enableDraggableScrollable: true, - builder: (_) => Padding( - padding: EdgeInsets.all(16 * context.scale), - child: _AddAttachmentMenu( - documentId: documentId, - isLocalMode: isLocalMode, - editorState: editorState, - selection: selection, - ), + builder: (_) => _AddAttachmentMenu( + documentId: documentId, + isLocalMode: isLocalMode, + editorState: editorState, + selection: selection, ), );