pl-fe: im stupid lol
Signed-off-by: nicole mikołajczyk <git@mkljczk.pl>
This commit is contained in:
@ -194,7 +194,10 @@ const Status: React.FC<IStatus> = (props) => {
|
||||
(node.current?.querySelector('.emoji-picker-dropdown') as HTMLButtonElement)?.click();
|
||||
};
|
||||
|
||||
const handleUnfilter = () => dispatch(unfilterStatus(status.filtered.length ? status.id : actualStatus.id));
|
||||
const handleUnfilter = () => {
|
||||
dispatch(unfilterStatus(actualStatus.id));
|
||||
if (actualStatus.id !== status.id) dispatch(unfilterStatus(status.id));
|
||||
};
|
||||
|
||||
const statusInfo = useMemo(() => {
|
||||
if (isReblog && showGroup && group) {
|
||||
|
||||
@ -255,7 +255,7 @@ const statuses = (state = initialState, action: EmojiReactsAction | EventsAction
|
||||
return create(state, (draft) => {
|
||||
const status = draft[action.statusId];
|
||||
if (status) {
|
||||
status.showFiltered = false;
|
||||
status.showFiltered = true;
|
||||
}
|
||||
});
|
||||
case TIMELINE_DELETE:
|
||||
|
||||
Reference in New Issue
Block a user