diff options
author | Ivan Chen <ivan@tagg.id> | 2021-03-08 16:27:08 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-08 16:27:08 -0500 |
commit | d77f43663fbe409b011b5509bcbff3d07f8ded55 (patch) | |
tree | 6bef0a405a92185d08b0850d199ee507e8bfe90c /src/services/ExploreService.ts | |
parent | 7e5f9c63360f8c4505bb414384e13f8c0f7576e4 (diff) | |
parent | 973c8a03681724f2e303fcd021301764bfc4717c (diff) |
Merge pull request #286 from leonyjiang/tma660-recently-searched-categories
[TMA-660] Recently Searched Categories
Diffstat (limited to 'src/services/ExploreService.ts')
-rw-r--r-- | src/services/ExploreService.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/services/ExploreService.ts b/src/services/ExploreService.ts index 33b79b4a..56a2e3d1 100644 --- a/src/services/ExploreService.ts +++ b/src/services/ExploreService.ts @@ -51,6 +51,7 @@ export const getAllExploreSections = async () => { return EMPTY_PROFILE_PREVIEW_LIST; } const data = await response.json(); + // TODO (if we return to original explore format): get keys from backend API const exploreSections: Record<ExploreSectionType, ProfilePreviewType[]> = { 'New to Tagg': data.categories.new_to_tagg, 'People You May Know': data.categories.people_you_may_know, |