Skip to content

Commit

Permalink
v1.0.62
Browse files Browse the repository at this point in the history
  • Loading branch information
ahadrt committed Nov 11, 2019
1 parent dda2b71 commit 6383f4e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@barteh/react-withservice",
"version": "1.0.61",
"version": "1.0.62",
"description": "A HOC injects and manages observable data services in a react Component",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/useService.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export default function useService(service, ...params) {
errorsub;

function handleChangeDone(data) {
setRet(new AUseServiceReturnType("ready", data));
setRet(new AUseServiceReturnType("ready", data,undefined,retry));
}
function handleChangeError(error) {
setRet(new AUseServiceReturnType("error", undefined, error, retry));
Expand Down

0 comments on commit 6383f4e

Please sign in to comment.