Skip to content

Commit

Permalink
Fix timeline
Browse files Browse the repository at this point in the history
  • Loading branch information
juangm committed Dec 14, 2024
1 parent 4f8ef0b commit 9626a1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/client/src/actions/timeline.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type {
AnyPost,
Paginated,
Post,
TimelineHighlightsRequest,
TimelineItem,
TimelineRequest,
Expand Down Expand Up @@ -47,6 +47,6 @@ export function fetchTimeline(
export function fetchTimelineHighlights(
client: AnyClient,
request: TimelineHighlightsRequest,
): ResultAsync<Paginated<Post> | null, UnexpectedError> {
): ResultAsync<Paginated<AnyPost>, UnexpectedError> {
return client.query(TimelineHighlightsQuery, { request });
}

0 comments on commit 9626a1b

Please sign in to comment.