Skip to content

Commit f9e7dc8

Browse files
committed
fix(feed): filter assigned & unassigned actions
1 parent 8a77dfc commit f9e7dc8

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/store/events.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ const TARGET_EVENTS = [
1919
] as const;
2020
const FILTERED_ACTIONS = [
2121
"labeled",
22-
"unlabeled"
22+
"unlabeled",
23+
"assigned",
24+
"unassigned"
2325
] as const;
2426

2527
function getActionString({ type, payload }: RawEvent): string {

0 commit comments

Comments
 (0)