From aebe483d80a084bb585c0fa5be469d09b39faeae Mon Sep 17 00:00:00 2001 From: ashilkn Date: Thu, 13 Jun 2024 12:33:20 +0530 Subject: [PATCH] [mob][photos] Remove internal user flag --- mobile/lib/ui/viewer/file/file_bottom_bar.dart | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/mobile/lib/ui/viewer/file/file_bottom_bar.dart b/mobile/lib/ui/viewer/file/file_bottom_bar.dart index fb1b03f30e..4d17a25f59 100644 --- a/mobile/lib/ui/viewer/file/file_bottom_bar.dart +++ b/mobile/lib/ui/viewer/file/file_bottom_bar.dart @@ -8,7 +8,6 @@ import 'package:photos/models/file/file.dart'; import 'package:photos/models/file/file_type.dart'; import 'package:photos/models/file/trash_file.dart'; import 'package:photos/models/selected_files.dart'; -import "package:photos/service_locator.dart"; import "package:photos/theme/colors.dart"; import "package:photos/theme/ente_theme.dart"; import "package:photos/ui/actions/file/file_actions.dart"; @@ -87,8 +86,7 @@ class FileBottomBarState extends State { if (!widget.showOnlyInfoButton && widget.file is! TrashFile) { if (widget.file.fileType == FileType.image || widget.file.fileType == FileType.livePhoto || - (flagService.internalUser && - widget.file.fileType == FileType.video)) { + (widget.file.fileType == FileType.video)) { children.add( Tooltip( message: "Edit",