Skip to content

Commit

Permalink
Implement feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
krollins-mdb committed Nov 1, 2023
1 parent 4ec49e2 commit 2ca81aa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ describe('Dictionary Tests', () => {
// run the `.filtered()` method on all the returned homeOwners to
// find the house with the address "Summerhill St."
const summerHillHouse = useQuery(HomeOwner, homeOwners => {
return homeOwner.filtered('home["address"] = "Summerhill St."');
return homeOwners.filtered('home["address"] = "Summerhill St."');
})[0].home;

// run the `.filtered()` method on all the returned homeOwners to
Expand Down
2 changes: 1 addition & 1 deletion examples/react-native/legacy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest --onlyChanged --runInBand --forceExit ",
"test": "jest --runInBand --forceExit ",
"test:all": "jest --runInBand --forceExit ",
"lint": "eslint --fix __tests__/ --ext .js,.jsx,.ts,.tsx",
"prettier": "prettier --write __tests__/*",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const HomeList = () => {
// run the `.filtered()` method on all the returned homeOwners to
// find the house with the address "Summerhill St."
const summerHillHouse = useQuery(HomeOwner, homeOwners => {
return homeOwner.filtered('home["address"] = "Summerhill St."');
return homeOwners.filtered('home["address"] = "Summerhill St."');
})[0].home;

// run the `.filtered()` method on all the returned homeOwners to
Expand Down

0 comments on commit 2ca81aa

Please sign in to comment.