Small tweaks to error and toast messages (#2142)

Removed instances of "got" - aimed to make very small changes that arn't very stylistic/ opinionated just basic native english tweaks
This commit is contained in:
maxtkacz
2021-08-27 17:25:54 +02:00
committed by GitHub
parent 69745c93d8
commit fb71324a53
4 changed files with 10 additions and 10 deletions

View File

@@ -49,7 +49,7 @@ export async function prepareUserSettings(): Promise<IUserSettings> {
userSettings.encryptionKey = randomBytes(24).toString('base64');
}
console.log(`UserSettings got generated and saved to: ${settingsPath}`);
console.log(`UserSettings were generated and saved to: ${settingsPath}`);
return writeUserSettings(userSettings, settingsPath);
}