mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
fix(catalog): hide threads across board catalogs
This commit is contained in:
@@ -13,6 +13,7 @@ export type PostMenuProps = {
|
||||
thumbnailUrl?: string;
|
||||
deleted?: boolean;
|
||||
removed?: boolean;
|
||||
comment?: Comment;
|
||||
};
|
||||
|
||||
export const selectPostMenuProps = (post?: Comment): PostMenuProps => {
|
||||
@@ -30,5 +31,6 @@ export const selectPostMenuProps = (post?: Comment): PostMenuProps => {
|
||||
thumbnailUrl: post?.thumbnailUrl,
|
||||
deleted: post?.deleted,
|
||||
removed: post?.removed,
|
||||
comment: post,
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user