Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ middleware: You can include redux middleware like redux-thunk here. Lightning-Re
## Installation
Lightning-Redux Unmanaged Packaged (Redux Component, redux, redux-thunk, and reselect static resource): https://login.salesforce.com/packaging/installPackage.apexp?p0=04t50000000M7PY

Lightning-Redux-Examples (Counter and Todo Examples unmanaged package): https://login.salesforce.com/packaging/installPackage.apexp?p0=04t50000000M7Px
Lightning-Redux-Examples (Counter and Todo Examples unmanaged package): https://login.salesforce.com/packaging/installPackage.apexp?p0=04t50000000M7R5

Otherwise, you can use the SFDX CLI to convert the source and do a metadata deploy.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,6 @@
component.set('v.completed', component.get("v.todo.Completed__c"));
var store = component.find("store");

var getTodoStatus = Reselect.createSelector([
helper.todoSelector,
helper.componentSelector
],
helper.getTodoStatus
);

var getTodoStatusFactory = function() {
return Reselect.createSelector([
helper.todoSelector,
Expand Down