diff --git a/frontend/app_flowy/lib/workspace/application/doc/share_bloc.dart b/frontend/app_flowy/lib/workspace/application/doc/share_bloc.dart index 4e17619b9f..e24411fdc0 100644 --- a/frontend/app_flowy/lib/workspace/application/doc/share_bloc.dart +++ b/frontend/app_flowy/lib/workspace/application/doc/share_bloc.dart @@ -40,14 +40,14 @@ class DocShareBloc extends Bloc { return value; } - Future get _ExportDir async { + Future get _exportDir async { Directory documentsDir = await appFlowyDocumentDirectory(); return documentsDir; } Future get _localPath async { - final dir = await _ExportDir; + final dir = await _exportDir; return dir.path; }