Skip to content

Commit 863ed08

Browse files
committed
Fix after merge
1 parent 637cad4 commit 863ed08

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

frontend/src/components/view/feed/FeedContainer.vue

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
</b-button>
1515
</div>
1616

17-
<TweetPreviewList :tweets="tweets" />
17+
<TweetPreviewList :tweets="tweets" @infinite="infiniteHandler" />
1818

1919
<b-modal :active.sync="isNewTweetModalActive" has-modal-card>
2020
<NewTweetForm />
@@ -94,7 +94,8 @@ export default {
9494
} else {
9595
$state.complete();
9696
}
97-
} catch {
97+
} catch (error) {
98+
this.showErrorMessage(error.message);
9899
$state.complete();
99100
}
100101
},

0 commit comments

Comments
 (0)