diff --git a/components/password_manager/core/browser/ui/credential_ui_entry.cc b/components/password_manager/core/browser/ui/credential_ui_entry.cc index 1e0766ad7c83d..a9a34f7757d20 100644 --- a/components/password_manager/core/browser/ui/credential_ui_entry.cc +++ b/components/password_manager/core/browser/ui/credential_ui_entry.cc @@ -97,7 +97,7 @@ CredentialUIEntry::CredentialUIEntry(const std::vector& forms) { // For cases when the notes differ within grouped passwords (e.g: a // credential exists in both account and profile stores), respective notes // should be concatenated and linebreak used as a delimiter. - std::vector notes_with_duplicates; + std::vector notes_with_duplicates; for (const auto& form : forms) { // Only notes with an empty `unique_display_name` are supported in the // settings UI. @@ -109,7 +109,7 @@ CredentialUIEntry::CredentialUIEntry(const std::vector& forms) { } auto unique_notes = base::MakeFlatSet(std::move(notes_with_duplicates)); - note = base::JoinString(std::vector( + note = base::JoinString(std::vector( unique_notes.begin(), unique_notes.end()), u"\n");