export default function sortBySID(fieldA, fieldB) {
    if (fieldA.tag === 'SID' && fieldB.tag === 'SID') {
        const sidA = lowerCase(selectFirstValue(fieldA, 'b'));
        const sidB = lowerCase(selectFirstValue(fieldB, 'b'));
        if (sidA > sidB) {