fix(ui): the bottom button on floating side panel clears all queue items

This commit is contained in:
Thomas Mello
2024-01-30 16:45:14 +03:00
committed by psychedelicious
parent 4477e04d59
commit d7f16b7c87
2 changed files with 8 additions and 4 deletions

View File

@@ -12,7 +12,7 @@ type ClearQueueIconButtonProps = ClearQueueButtonProps & {
onOpen: () => void;
};
const ClearAllQueueIconButton = ({ onOpen, ...props }: ClearQueueIconButtonProps) => {
export const ClearAllQueueIconButton = ({ onOpen, ...props }: ClearQueueIconButtonProps) => {
const { t } = useTranslation();
const { isLoading, isDisabled } = useClearQueue();