fix(notification): sms subject output (#298)

This commit is contained in:
ththiem
2020-09-26 05:28:46 -07:00
committed by GitHub
parent 0aa7ab596c
commit 03755d5eb1
3 changed files with 9 additions and 4 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ export function sendSMS(link: Link, store: Store) {
}
] : undefined,
from: email.username,
subject: Print.inStock(link, store),
subject: Print.inStock(link, store, false, true),
text: link.cartUrl ? link.cartUrl : link.url,
to: generateAddress()
};