diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-07-05 17:13:29 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-07-05 17:13:29 +0900 |
| commit | f12868220067ebc640db8c8c2a34fd3b575d3d26 (patch) | |
| tree | 87088163a53551f2dab7261678285156ca845fe4 /packages/frontend/src/pages/flash | |
| parent | clean up (diff) | |
| download | misskey-f12868220067ebc640db8c8c2a34fd3b575d3d26.tar.gz misskey-f12868220067ebc640db8c8c2a34fd3b575d3d26.tar.bz2 misskey-f12868220067ebc640db8c8c2a34fd3b575d3d26.zip | |
fix type errors
Diffstat (limited to 'packages/frontend/src/pages/flash')
| -rw-r--r-- | packages/frontend/src/pages/flash/flash-index.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/pages/flash/flash-index.vue b/packages/frontend/src/pages/flash/flash-index.vue index 43632f55ca..74d8d639f3 100644 --- a/packages/frontend/src/pages/flash/flash-index.vue +++ b/packages/frontend/src/pages/flash/flash-index.vue @@ -67,7 +67,7 @@ const router = useRouter(); const tab = ref('featured'); const searchQuery = ref(''); -const searchPaginator = shallowRef<IPaginator | null>(null); +const searchPaginator = shallowRef<Paginator<'flash/search'> | null>(null); const searchKey = ref(0); const featuredFlashsPaginator = markRaw(new Paginator('flash/featured', { |