Skip to content

Commit

Permalink
fix: prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
EllaMartirosyan committed May 2, 2022
1 parent 44c6a9b commit f516da2
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,10 @@ export const TerrainianHeightTool: React.FC<TerrainianHeightProps> = (
).then(
(updatedPositions) => {
console.log(updatedPositions);
updatedPositions = updatedPositions.slice(0, updatedPositions.length - 1); // UNIX brake line
updatedPositions = updatedPositions.slice(
0,
updatedPositions.length - 1
); // UNIX brake line

mapViewer.scene.globe.depthTestAgainstTerrain = true;
mapViewer.entities.suspendEvents();
Expand Down

0 comments on commit f516da2

Please sign in to comment.