diff options
author | Ivan Chen <ivan@tagg.id> | 2021-03-25 12:26:28 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-25 12:26:28 -0400 |
commit | e2fd6a1ccaa26eb2e8e7e3472c88e75cbc41fedd (patch) | |
tree | 4d69b8598ef86e9a747a179ff6b71c7f1f723fc3 /src/constants/constants.ts | |
parent | 24a3e50c62df4f9c64a103154af2746c1f2ce8d0 (diff) | |
parent | 35ebcd4da8471c9dbdd6bf7923ab06d66db9d364 (diff) |
Merge pull request #327 from IvanIFChen/tma726-remove-new-to-tagg
[TMA-726] Remove new to tagg
Diffstat (limited to 'src/constants/constants.ts')
-rw-r--r-- | src/constants/constants.ts | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/src/constants/constants.ts b/src/constants/constants.ts index 6b513f4e..d24e352e 100644 --- a/src/constants/constants.ts +++ b/src/constants/constants.ts @@ -1,6 +1,6 @@ import {ReactText} from 'react'; -import {BackgroundGradientType, ExploreSectionType} from './../types/'; -import {SCREEN_WIDTH, SCREEN_HEIGHT, isIPhoneX, normalize} from '../utils'; +import {isIPhoneX, normalize, SCREEN_HEIGHT, SCREEN_WIDTH} from '../utils'; +import {BackgroundGradientType} from './../types/'; export const CHIN_HEIGHT = 34; @@ -182,17 +182,6 @@ export const MOMENT_CATEGORY_BG_COLORS: string[] = [ '#4E7175', ]; -// order matters, this decides the order which it displays -export const EXPLORE_SECTION_TITLES: ExploreSectionType[] = [ - 'New to Tagg', - 'People You May Know', - 'Trending on Tagg', - "Brown '24", - "Brown '23", - "Brown '22", - "Brown '21", -]; - export const SP_WIDTH = 375; export const SP_HEIGHT = 812; |