Skip to content

Commit

Permalink
Fix join string for missing citation keys
Browse files Browse the repository at this point in the history
  • Loading branch information
amake committed Sep 27, 2024
1 parent b8c552e commit c6688a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/pages/document/citations.dart
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ extension CitationHandler on DocumentPageState {
showErrorSnackBar(
context,
AppLocalizations.of(context)!
.snackbarMessageSomeCitationsNotFound(notFound.join(',')));
.snackbarMessageSomeCitationsNotFound(notFound.join(', ')));
}

await showDialog<void>(
Expand Down

0 comments on commit c6688a6

Please sign in to comment.