Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/web/src/hooks/use-task-board-item-prs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ export function useTaskBoardItemPrs(itemId: string | undefined) {
// cached data, so the parse doesn't run on every render.
initialData: () =>
itemId
? ((readCachedTaskPrs(locator, itemId)?.data as
? (readCachedTaskPrs(locator, itemId)?.data as
| TaskBoardItemPr[]
| undefined) ?? undefined)
| undefined)
: undefined,
initialDataUpdatedAt: () =>
itemId ? readCachedTaskPrs(locator, itemId)?.updatedAt : undefined,
Expand Down
Loading