Remove feature flag

This commit is contained in:
Neeraj Gupta 2023-04-18 13:52:11 +05:30
parent 662a6f9070
commit ef6c84ad97
No known key found for this signature in database
GPG key ID: 3C5A1684DC1729E1

View file

@ -142,25 +142,23 @@ class _FileDetailsWidgetState extends State<FileDetailsWidget> {
},
),
);
if (FeatureFlagService.instance.isInternalUserOrDebugBuild()) {
fileDetailsTiles.addAll([
ValueListenableBuilder(
valueListenable: hasLocationData,
builder: (context, bool value, __) {
return value
? Column(
children: [
LocationTagsWidget(
widget.file.location!,
),
const FileDetailsDivider(),
],
)
: const SizedBox.shrink();
},
)
]);
}
fileDetailsTiles.addAll([
ValueListenableBuilder(
valueListenable: hasLocationData,
builder: (context, bool value, __) {
return value
? Column(
children: [
LocationTagsWidget(
widget.file.location!,
),
const FileDetailsDivider(),
],
)
: const SizedBox.shrink();
},
)
]);
if (_isImage) {
fileDetailsTiles.addAll([
ValueListenableBuilder(