diff --git a/src/App/Pages/Generator/GeneratorPageViewModel.cs b/src/App/Pages/Generator/GeneratorPageViewModel.cs index fcf99fb26..770f905ed 100644 --- a/src/App/Pages/Generator/GeneratorPageViewModel.cs +++ b/src/App/Pages/Generator/GeneratorPageViewModel.cs @@ -286,6 +286,10 @@ namespace Bit.App.Pages public async Task SliderInputAsync() { + if (!_doneIniting) + { + return; + } SetOptions(); _passwordGenerationService.NormalizeOptions(_options, _enforcedPolicyOptions); Password = await _passwordGenerationService.GeneratePasswordAsync(_options);