Skip to content

Commit

Permalink
feat: dummy commit to force release 🏌
Browse files Browse the repository at this point in the history
  • Loading branch information
cazala committed Jul 26, 2019
1 parent bd11dea commit c159e20
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -871,9 +871,8 @@ export function* rootSaga() {
You can use the same redux action type to generate different Segment events if you pass a function as the second parameter instead of a string:

```ts
add(
AUTHORIZE_LAND_SUCCESS,
action => (action.isAuthorized ? 'Authorize LAND' : 'Unauthorize LAND')
add(AUTHORIZE_LAND_SUCCESS, action =>
action.isAuthorized ? 'Authorize LAND' : 'Unauthorize LAND'
)
```

Expand Down

0 comments on commit c159e20

Please sign in to comment.