aboutsummaryrefslogtreecommitdiff
path: root/src/constants/constants.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/constants/constants.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/constants/constants.ts')
-rw-r--r--src/constants/constants.ts14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/constants/constants.ts b/src/constants/constants.ts
index 52a52de6..a85af7cd 100644
--- a/src/constants/constants.ts
+++ b/src/constants/constants.ts
@@ -87,7 +87,7 @@ export const SOCIAL_FONT_COLORS = {
};
export const TOGGLE_BUTTON_TYPE = {
- FOLLOW_UNFOLLOW: 'Follow',
+ FRIEND_UNFRIEND: 'Friend',
BLOCK_UNBLOCK: 'Block',
};
@@ -130,3 +130,15 @@ export const BACKGROUND_GRADIENT_MAP: Record<
[BackgroundGradientType.Light]: ['#9F00FF', '#27EAE9'],
[BackgroundGradientType.Dark]: ['#421566', '#385D5E'],
};
+
+export const CLASS_YEAR_LIST: Array<string> = [
+ '2018',
+ '2019',
+ '2020',
+ '2021',
+ '2022',
+ '2023',
+ '2024',
+ '2025',
+ '2026',
+];