const findPurchaseType = () => {
        const possiblePurchaseType = freePaidFilterStructure.items.find(({ checked }) => checked);

        return possiblePurchaseType ? possiblePurchaseType.id : 'all';
    };