function convertValueToString()

in src/components/search/SearchResults.tsx [57:63]


    function convertValueToString(myObj: any) {
      Object.keys(myObj).forEach(function (key) {
        typeof myObj[key] == "object"
          ? convertValueToString(myObj[key])
          : (myObj[key] = String(myObj[key]));
      });
    }