diff --git a/routes/_pages/blocked.html b/routes/_pages/blocked.html
index 97641ff..1b577d9 100644
--- a/routes/_pages/blocked.html
+++ b/routes/_pages/blocked.html
@@ -8,8 +8,7 @@
export default {
computed: {
- statusId: params => params.statusId,
- accountsFetcher: ($currentInstance, $accessToken, statusId) => () => getBlockedAccounts($currentInstance, $accessToken, statusId)
+ accountsFetcher: ($currentInstance, $accessToken) => () => getBlockedAccounts($currentInstance, $accessToken)
},
store: () => store,
components: {
@@ -17,4 +16,4 @@
DynamicPageBanner
}
}
-
\ No newline at end of file
+
diff --git a/routes/_pages/muted.html b/routes/_pages/muted.html
index 58d115c..44a8f1f 100644
--- a/routes/_pages/muted.html
+++ b/routes/_pages/muted.html
@@ -8,8 +8,7 @@
export default {
computed: {
- statusId: params => params.statusId,
- accountsFetcher: ($currentInstance, $accessToken, statusId) => () => getMutedAccounts($currentInstance, $accessToken, statusId)
+ accountsFetcher: ($currentInstance, $accessToken) => () => getMutedAccounts($currentInstance, $accessToken)
},
store: () => store,
components: {
@@ -17,4 +16,4 @@
DynamicPageBanner
}
}
-
\ No newline at end of file
+