From 86f83682c1b0af858605cdaade544f7d6bea7c97 Mon Sep 17 00:00:00 2001 From: David Date: Tue, 30 Aug 2022 20:08:01 -0700 Subject: [PATCH] Stop Fetching oops --- src/components/user_profile/user_profile.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/user_profile/user_profile.js b/src/components/user_profile/user_profile.js index b04db703..ed30c02e 100644 --- a/src/components/user_profile/user_profile.js +++ b/src/components/user_profile/user_profile.js @@ -141,6 +141,7 @@ const UserProfile = { }, stopFetching () { this.$store.dispatch('stopFetchingTimeline', 'user') + this.$store.dispatch('stopFetchingTimeline', 'replies') this.$store.dispatch('stopFetchingTimeline', 'favorites') this.$store.dispatch('stopFetchingTimeline', 'media') },