Revert "refactor: paginationの型を明示する (#12809)" (#12810)

This reverts commit 6855079811.
This commit is contained in:
GrapeApple0 2023-12-27 15:55:09 +09:00 committed by GitHub
parent 8904e0a12b
commit 6439c7b64b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
37 changed files with 93 additions and 93 deletions

View file

@ -225,7 +225,7 @@ import { definePageMetadata } from '@/scripts/page-metadata.js';
import { i18n } from '@/i18n.js';
import { iAmAdmin, $i } from '@/account.js';
import MkRolePreview from '@/components/MkRolePreview.vue';
import MkPagination, { Paging } from '@/components/MkPagination.vue';
import MkPagination from '@/components/MkPagination.vue';
const props = withDefaults(defineProps<{
userId: string;
@ -258,7 +258,7 @@ const announcementsPagination = {
params: computed(() => ({
userId: props.userId,
})),
} satisfies Paging;
};
const expandedRoles = ref([]);
function createFetcher() {