This commit is contained in:
Kainoa Kanter 2023-04-06 19:06:31 -07:00
parent 8229e618e9
commit 468b14be54
2 changed files with 6 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "calckey", "name": "calckey",
"version": "13.2.0-dev34", "version": "13.2.0-dev35",
"codename": "aqua", "codename": "aqua",
"repository": { "repository": {
"type": "git", "type": "git",

View File

@ -114,7 +114,7 @@ const keymap = {
t: focus, t: focus,
}; };
let timelines = ['forYou'] let timelines = ['forYou'];
if (isRecommendedTimelineAvailable || isGlobalTimelineAvailable) { if (isRecommendedTimelineAvailable || isGlobalTimelineAvailable) {
timelines.push('explore'); timelines.push('explore');
@ -134,6 +134,10 @@ if (isGlobalTimelineAvailable) {
discoverTimelines.push('global'); discoverTimelines.push('global');
} }
let tab = $ref(timelines[0]);
watch($$(tab), () => (syncSlide(timelines.indexOf(tab))));
const hotPagination = { const hotPagination = {
endpoint: 'notes/featured' as const, endpoint: 'notes/featured' as const,
limit: 20, limit: 20,