Skip to content

Commit

Permalink
Bump rambda from 6.9.0 to 7.0.1 (#107)
Browse files Browse the repository at this point in the history
* Bump rambda from 6.9.0 to 7.0.1

Bumps [rambda](https://github.com/selfrefactor/rambda) from 6.9.0 to 7.0.1.
- [Release notes](https://github.com/selfrefactor/rambda/releases)
- [Changelog](https://github.com/selfrefactor/rambda/blob/master/CHANGELOG.md)
- [Commits](https://github.com/selfrefactor/rambda/commits)

---
updated-dependencies:
- dependency-name: rambda
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* fix type error on build

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jessica McInchak <[email protected]>
  • Loading branch information
dependabot[bot] and jessicamcinchak authored Jan 11, 2022
1 parent 51c5129 commit ada74ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"lit": "^2.0.0-rc.2",
"ol": "^6.9.0",
"ol-mapbox-style": "^6.4.1",
"rambda": "^6.9.0"
"rambda": "^7.0.1"
},
"devDependencies": {
"@types/node": "^17.0.7",
Expand Down
2 changes: 1 addition & 1 deletion src/my-map.ts
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ export class MyMap extends LitElement {
const sketches = drawingSource.getFeatures();

if (sketches.length > 0) {
const lastSketchGeom = last(sketches).getGeometry();
const lastSketchGeom = last(sketches)?.getGeometry();

this.dispatch(
"geojsonChange",
Expand Down

0 comments on commit ada74ef

Please sign in to comment.