We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f8c308 commit e2c03cfCopy full SHA for e2c03cf
mobile/lib/widgets/asset_viewer/description_input.dart
@@ -34,8 +34,8 @@ class DescriptionInput extends HookConsumerWidget {
34
final owner = ref.watch(currentUserProvider);
35
final hasError = useState(false);
36
final assetWithExif = ref.watch(assetDetailProvider(asset));
37
- final assetHasDescription = useState(false);
38
- final isAssetOwnedByUser = fastHash(owner?.id ?? '') == asset.ownerId;
+ final hasDescription = useState(false);
+ final isOwner = fastHash(owner?.id ?? '') == asset.ownerId;
39
40
useEffect(
41
() {
0 commit comments