Skip to content
Open
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
3 changes: 1 addition & 2 deletions src/routes/(app)/dashboard/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -273,9 +273,8 @@
return 'note' in n && n.note.noteable_id?.toString() === item.id;
case !!n.target_id:
return 'target_id' in n && n.target_id?.toString() === item.id;
case 'push_data' in n:
return !('push_data' in n && n.push_data.ref === item.ref);
default:
// Push/commit events (and anything else) are keyed by their event id
return item.id === n.id?.toString();
}
});
Expand Down
Loading