roshikhan301's picture
Upload 2113 files
8a37e0a verified
import { useGetCurrentQueueItemQuery } from 'services/api/endpoints/queue';
export const useCurrentDestination = () => {
const { destination } = useGetCurrentQueueItemQuery(undefined, {
selectFromResult: ({ data }) => ({
destination: data ? data.destination : null,
}),
});
return destination;
};