Skip to content

Commit

Permalink
Fixed: Removal from Queue
Browse files Browse the repository at this point in the history
  • Loading branch information
mynameisbogdan committed Jan 24, 2024
1 parent 0eb8336 commit 49b404d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/Activity/Queue/RemoveQueueItemModal.tsx
Expand Up @@ -13,7 +13,7 @@ import translate from 'Utilities/String/translate';
import styles from './RemoveQueueItemModal.css';

interface RemovePressProps {
remove: boolean;
removeFromClient: boolean;
changeCategory: boolean;
blocklist: boolean;
skipRedownload: boolean;
Expand Down Expand Up @@ -148,7 +148,7 @@ function RemoveQueueItemModal(props: RemoveQueueItemModalProps) {

const handleConfirmRemove = useCallback(() => {
onRemovePress({
remove: removalMethod === 'removeFromClient',
removeFromClient: removalMethod === 'removeFromClient',
changeCategory: removalMethod === 'changeCategory',
blocklist: blocklistMethod !== 'doNotBlocklist',
skipRedownload: blocklistMethod === 'blocklistOnly',
Expand Down

0 comments on commit 49b404d

Please sign in to comment.