[PM-12338] fix length hint on passphrase num words field (#11963)

pull/11824/head
✨ Audrey ✨ 2 years ago committed by GitHub
parent e87cc5896b
commit a5294bed3d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -102,8 +102,8 @@ export class PassphraseSettingsComponent implements OnInit, OnDestroy {
const boundariesHint = this.i18nService.t(
"generatorBoundariesHint",
constraints.numWords.min,
constraints.numWords.max,
constraints.numWords.min?.toString(),
constraints.numWords.max?.toString(),
);
this.numWordsBoundariesHint.next(boundariesHint);
});

Loading…
Cancel
Save