Skip to content

Commit

Permalink
fix(notification): fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
realth000 committed Oct 11, 2024
1 parent d828648 commit c4c9af4
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,8 @@ final class NotificationRepository with LoggerMixin {
final result = await getIt
.get<NetClientProvider>()
.get(
'$personalMessageUrl${page != null ? "&page=$page" : null}')
'$personalMessageUrl${page != null ? "&page=$page" : null}',
)
.run();
if (result.isLeft()) {
return Left(result.unwrapErr());
Expand Down

0 comments on commit c4c9af4

Please sign in to comment.