From 2dde95d929da22fd73b9a6c62fafbbf8c9c05ae8 Mon Sep 17 00:00:00 2001 From: Andrew Koroluk Date: Fri, 19 May 2017 12:07:05 -0400 Subject: [PATCH] fix(client:auth.service): fix lodash import fixes #2549 --- templates/app/client/components/auth(auth)/auth.service.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/app/client/components/auth(auth)/auth.service.js b/templates/app/client/components/auth(auth)/auth.service.js index a12ca43bd..51504950e 100644 --- a/templates/app/client/components/auth(auth)/auth.service.js +++ b/templates/app/client/components/auth(auth)/auth.service.js @@ -1,6 +1,6 @@ 'use strict'; -import _ from 'lodash'; +import * as _ from 'lodash'; // @flow class _User {