From 929c5de0e29e0e8fc0e11765cb20a90c0f984242 Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Sun, 23 Feb 2020 20:19:01 -0500 Subject: [PATCH] return repost claim in doRepost --- dist/bundle.es.js | 2 +- src/redux/actions/claims.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/bundle.es.js b/dist/bundle.es.js index 4f63f2d..f25e82b 100644 --- a/dist/bundle.es.js +++ b/dist/bundle.es.js @@ -3255,7 +3255,7 @@ function doRepost(options) { }); dispatch(doFetchClaimListMine(1, 10)); - resolve(); + resolve(repostClaim); } function failure(error) { diff --git a/src/redux/actions/claims.js b/src/redux/actions/claims.js index 4e12c8d..752e081 100644 --- a/src/redux/actions/claims.js +++ b/src/redux/actions/claims.js @@ -485,7 +485,7 @@ export function doRepost(options: StreamRepostOptions) { }); dispatch(doFetchClaimListMine(1, 10)); - resolve(); + resolve(repostClaim); } function failure(error) {