diff options
author | Ivan Chen <ivan@tagg.id> | 2021-02-05 15:27:00 -0500 |
---|---|---|
committer | Ivan Chen <ivan@tagg.id> | 2021-02-05 15:27:00 -0500 |
commit | 2c69c7a49fcbc92fa1024a0e83c3bad669672e91 (patch) | |
tree | 8f770863bc0f1f1892ea946677ecf481a2abeaa6 /src/screens | |
parent | 54027f2b5b763550fd11d1df6c5b979a7528170d (diff) |
moved permission to routes
Diffstat (limited to 'src/screens')
-rw-r--r-- | src/screens/onboarding/CategorySelection.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/screens/onboarding/CategorySelection.tsx b/src/screens/onboarding/CategorySelection.tsx index a3acbbb7..94dd44b2 100644 --- a/src/screens/onboarding/CategorySelection.tsx +++ b/src/screens/onboarding/CategorySelection.tsx @@ -17,7 +17,7 @@ import {Background, MomentCategory} from '../../components'; import {MOMENT_CATEGORIES} from '../../constants'; import {ERROR_SOMETHING_WENT_WRONG} from '../../constants/strings'; import {OnboardingStackParams} from '../../routes'; -import {fcmService, postMomentCategories} from '../../services'; +import {postMomentCategories} from '../../services'; import { updateIsOnboardedUser, updateMomentCategories, @@ -169,7 +169,6 @@ const CategorySelection: React.FC<CategorySelectionProps> = ({ const token = await getTokenOrLogout(dispatch); await postMomentCategories(selectedCategories, token); userLogin(dispatch, {userId: userId, username: username}); - fcmService.sendFcmTokenToServer(); } else { dispatch( updateMomentCategories( |