Skip to content
This repository has been archived by the owner on Dec 30, 2022. It is now read-only.

Commit

Permalink
chore: grammar
Browse files Browse the repository at this point in the history
Co-Authored-By: Samuel Vaillant <samuel.vllnt@gmail.com>
  • Loading branch information
Haroenv and samouss committed Sep 23, 2019
1 parent 860c915 commit 274eba4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ describe('findResultsState', () => {
const trigger = () => findResultsState(App, props);

expect(() => trigger()).toThrowErrorMatchingInlineSnapshot(
`"The props provided to \`findResultsState\` must have a \`indexName\`"`
`"The props provided to \`findResultsState\` must have an \`indexName\`"`
);
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export const findResultsState = function(App, props) {

if (!props.indexName) {
throw new Error(
'The props provided to `findResultsState` must have a `indexName`'
'The props provided to `findResultsState` must have an `indexName`'
);
}

Expand Down

0 comments on commit 274eba4

Please sign in to comment.