Skip to content

Commit

Permalink
fix(stocks): reload stocks on page revisit
Browse files Browse the repository at this point in the history
  • Loading branch information
tomastrajan committed Feb 3, 2019
1 parent 6fcfafd commit 4ddf714
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/app/examples/stock-market/stock-market.effects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ export class StockMarketEffects {
symbol: action.payload.symbol
})
),
distinctUntilChanged((x, y) => x.payload.symbol === y.payload.symbol),
debounceTime(debounce, scheduler),
switchMap((action: ActionStockMarketRetrieve) =>
this.service.retrieveStock(action.payload.symbol).pipe(
Expand Down

0 comments on commit 4ddf714

Please sign in to comment.