Skip to content

Commit

Permalink
fix: sample view (do not call function in sample) (#1829)
Browse files Browse the repository at this point in the history
  • Loading branch information
sofisl authored May 26, 2020
1 parent 503620c commit 2b1eca8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions composer/composer_transform_csv_to_json.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ module.exports = function main(
var jsonString = JSON.stringify(weatherInCity);
return jsonString;
}

transformCSVtoJSON(line);
// [END composer_transform_csv_to_json]
// [END composer_transform_csv_to_json]
return transformCSVtoJSON(line);
};

0 comments on commit 2b1eca8

Please sign in to comment.