👕 Fix lint issue

This commit is contained in:
Jan Oberhauser
2020-10-20 11:21:16 +02:00
parent 269bab679d
commit a27ac0e203
2 changed files with 12 additions and 12 deletions

View File

@@ -152,8 +152,8 @@ export class EmailSend implements INodeType {
if(credentials.user || credentials.password) {
// @ts-ignore
connectionOptions.auth = {
user: credentials.user,
pass: credentials.password
user: credentials.user as string,
pass: credentials.password as string,
};
}