Skip to content

Commit

Permalink
chore(ci): run dart format lib
Browse files Browse the repository at this point in the history
  • Loading branch information
vareversat committed Jun 26, 2023
1 parent 977ea95 commit f95b84e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 3 additions & 3 deletions lib/screens/notification_screen/notification_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ class _NotificationScreenState extends CustomWidgetState<NotificationScreen> {
);
},
).then(
(value) => {
(value) => {
if (value != null)
{
BlocProvider.of<NotificationBloc>(context).add(
Expand Down Expand Up @@ -200,7 +200,7 @@ class _NotificationScreenState extends CustomWidgetState<NotificationScreen> {
);
},
).then(
(value) => {
(value) => {
if (value != null)
{
BlocProvider.of<NotificationBloc>(context).add(
Expand Down Expand Up @@ -250,7 +250,7 @@ class _NotificationScreenState extends CustomWidgetState<NotificationScreen> {
);
},
).then(
(value) => {
(value) => {
if (value != null)
{
BlocProvider.of<NotificationBloc>(context).add(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,6 @@ class _ForecastInformationBottomSheetState
Widget build(BuildContext context) {
final colorScheme = Theme.of(context).colorScheme;

print(widget.forecast.toJson());

Sentry.addBreadcrumb(
Breadcrumb(
message: 'Open ForecastInformationBottomSheet',
Expand Down

0 comments on commit f95b84e

Please sign in to comment.