summaryrefslogtreecommitdiff
path: root/packages/frontend/src/pages/my-lists
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2023-09-11 14:55:18 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2023-09-11 14:55:18 +0900
commit25e030a7074f8e00cfbdaf85e491b9b22886991d (patch)
treedc65176bd88a68f64d907c2bb5a41b3fda1c0a5c /packages/frontend/src/pages/my-lists
parentfeat: テスト通知を送信できるようにする (#11810) (diff)
downloadmisskey-25e030a7074f8e00cfbdaf85e491b9b22886991d.tar.gz
misskey-25e030a7074f8e00cfbdaf85e491b9b22886991d.tar.bz2
misskey-25e030a7074f8e00cfbdaf85e491b9b22886991d.zip
enhance(frontend): improve some caches
Diffstat (limited to 'packages/frontend/src/pages/my-lists')
-rw-r--r--packages/frontend/src/pages/my-lists/index.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/pages/my-lists/index.vue b/packages/frontend/src/pages/my-lists/index.vue
index edfff8b05e..a779e4a944 100644
--- a/packages/frontend/src/pages/my-lists/index.vue
+++ b/packages/frontend/src/pages/my-lists/index.vue
@@ -42,7 +42,7 @@ import { $i } from '@/account';
const items = $computed(() => userListsCache.value.value ?? []);
function fetch() {
- userListsCache.fetch(() => os.api('users/lists/list'));
+ userListsCache.fetch();
}
fetch();