const findStatus = () => {
        const possibleStatus = statusFilterStructure.items.find(({ checked }) => checked);

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