Created
September 23, 2016 08:50
-
-
Save justinvdm/953c1827ca0c8e2a05797f51573a7f37 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/actions/onboarding.js b/src/actions/onboarding.js | |
index 374a610..485a015 100644 | |
--- a/src/actions/onboarding.js | |
+++ b/src/actions/onboarding.js | |
@@ -10,7 +10,7 @@ import { | |
const { ApiResponseError } = api; | |
-export const chooseProfilePicture = () => ({ | |
+const chooseProfilePicture = () => ({ | |
type: constants.ONBOARDING_CHOOSE_PROFILE_PICTURE, | |
}); | |
diff --git a/src/components/index.js b/src/components/index.js | |
index deaeb35..b33e69f 100644 | |
--- a/src/components/index.js | |
+++ b/src/components/index.js | |
@@ -24,7 +24,6 @@ import MilestoneEvent from './MilestoneEvent'; | |
export { | |
BaseView, | |
- Toolbar, | |
Text, | |
Label, | |
Link, | |
diff --git a/src/statuses/auth.js b/src/statuses/auth.js | |
index ff777fd..7b811b3 100644 | |
--- a/src/statuses/auth.js | |
+++ b/src/statuses/auth.js | |
@@ -2,10 +2,10 @@ import * as constants from 'src/constants/auth'; | |
import { staticStatus } from 'src/helpers'; | |
-export const authStatusIdle = staticStatus(constants.AUTH_STATUS_IDLE); | |
-export const authStatusBusy = staticStatus(constants.AUTH_STATUS_BUSY); | |
-export const authStatusError = staticStatus(constants.AUTH_STATUS_ERROR); | |
-export const authStatusNotFound = staticStatus(constants.AUTH_STATUS_NOT_FOUND); | |
+const authStatusIdle = staticStatus(constants.AUTH_STATUS_IDLE); | |
+const authStatusBusy = staticStatus(constants.AUTH_STATUS_BUSY); | |
+const authStatusError = staticStatus(constants.AUTH_STATUS_ERROR); | |
+const authStatusNotFound = staticStatus(constants.AUTH_STATUS_NOT_FOUND); | |
export { | |
diff --git a/src/statuses/profile.js b/src/statuses/profile.js | |
index 44ee882..c59db59 100644 | |
--- a/src/statuses/profile.js | |
+++ b/src/statuses/profile.js | |
@@ -2,9 +2,9 @@ import * as constants from 'src/constants/profile'; | |
import { staticStatus } from 'src/helpers'; | |
-export const profileStatusIdle = staticStatus(constants.PROFILE_STATUS_IDLE); | |
-export const profileStatusBusy = staticStatus(constants.PROFILE_STATUS_BUSY); | |
-export const profileStatusError = staticStatus(constants.PROFILE_STATUS_ERROR); | |
+const profileStatusIdle = staticStatus(constants.PROFILE_STATUS_IDLE); | |
+const profileStatusBusy = staticStatus(constants.PROFILE_STATUS_BUSY); | |
+const profileStatusError = staticStatus(constants.PROFILE_STATUS_ERROR); | |
export { |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment