fix: cyclical dependencies

Fixes #468

Signed-off-by: Jef LeCompte <jeffreylec@gmail.com>
This commit is contained in:
Jef LeCompte
2020-10-09 13:29:41 -05:00
parent eac05c610d
commit ed970fc397
3 changed files with 11 additions and 10 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ if (config.notifications.phone.number && !config.notifications.email.username) {
const [email, phone] = [config.notifications.email, config.notifications.phone];
export function sendSMS(link: Link, store: Store) {
export function sendSms(link: Link, store: Store) {
if (phone.number) {
logger.debug('↗ sending sms');
const carrier = phone.carrier;