states.find(state => state === 'VALID' || state === 'IN_PROGRESS')
states.find(state => ['VALID', 'IN_PROGRESS'].includes(state))