Skip to content

Commit

Permalink
fix incorrect date when editing token
Browse files Browse the repository at this point in the history
  • Loading branch information
WesselvanDam committed Sep 19, 2024
1 parent edfd294 commit b15438d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/screens/Details/local/details_info.dart
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ class DetailsInfo extends ConsumerWidget {
?.date;
return date == null
? 'Select a date'
: DateFormat.yMMMd().format(value!.fromInfo.date!);
: DateFormat.yMMMd().format(date);
})),
style: TextStyle(
color: Theme.of(context).primaryColor,
Expand Down

0 comments on commit b15438d

Please sign in to comment.