aboutsummaryrefslogtreecommitdiff
path: root/src/store/initialStates.ts
diff options
context:
space:
mode:
authorAshm Walia <40498934+ashmgarv@users.noreply.github.com>2020-12-30 11:36:44 -0800
committerGitHub <noreply@github.com>2020-12-30 14:36:44 -0500
commit38661e00281363b0f4ad32f0b29d739e1ca09164 (patch)
tree316cd837b6cc6ae24783f1d93d6c9ee7fb898f68 /src/store/initialStates.ts
parentbd2f89805d0bb1c2f1d08fe8d91099aa4f109d35 (diff)
[TMA - 457]Change followers to friends (#149)
* One commit to replace followers with friends * Move block unblock to drawer and some cosmetic changes * Options to edit own profile when viewing * Changes for University Class * Small fix * Made ProfileOnboarding a scroll view and other small changes * Small fix * Small fix thanks to ivan and tanmay * Add ?
Diffstat (limited to 'src/store/initialStates.ts')
-rw-r--r--src/store/initialStates.ts13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/store/initialStates.ts b/src/store/initialStates.ts
index b75569d6..883c0487 100644
--- a/src/store/initialStates.ts
+++ b/src/store/initialStates.ts
@@ -16,6 +16,7 @@ export const NO_PROFILE: ProfileType = {
name: '',
gender: '',
birthday: undefined,
+ university_class: 2021,
snapchat: '',
tiktok: '',
};
@@ -38,13 +39,12 @@ export const NO_USER_DATA = {
cover: <string | null>'',
};
-export const NO_NOTIFICATIONS = {
- notifications: EMPTY_NOTIFICATIONS_LIST,
+export const NO_FRIENDS_DATA = {
+ friends: EMPTY_PROFILE_PREVIEW_LIST,
};
-export const NO_FOLLOW_DATA = {
- followers: EMPTY_PROFILE_PREVIEW_LIST,
- following: EMPTY_PROFILE_PREVIEW_LIST,
+export const NO_NOTIFICATIONS = {
+ notifications: EMPTY_NOTIFICATIONS_LIST,
};
export const NO_MOMENTS = {
@@ -97,8 +97,7 @@ export const DUMMY_USERID = 'ID-1234-567';
export const DUMMY_USERNAME = 'tagg_userX';
export const EMPTY_USER_X = <UserXType>{
- followers: EMPTY_PROFILE_PREVIEW_LIST,
- following: EMPTY_PROFILE_PREVIEW_LIST,
+ friends: EMPTY_PROFILE_PREVIEW_LIST,
moments: EMPTY_MOMENTS_LIST,
momentCategories: MOMENT_CATEGORIES_MAP,
socialAccounts: NO_SOCIAL_ACCOUNTS,