diff options
| author | GrapeApple0 <84321396+GrapeApple0@users.noreply.github.com> | 2023-12-27 15:55:09 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-27 15:55:09 +0900 |
| commit | 6439c7b64b31dc9fbc6c968ef020787f34ee8331 (patch) | |
| tree | 7e057245a089e1ce841d8dbb4b30653c88dd0d8c /packages/frontend/src/pages/about.federation.vue | |
| parent | :art: (diff) | |
| download | misskey-6439c7b64b31dc9fbc6c968ef020787f34ee8331.tar.gz misskey-6439c7b64b31dc9fbc6c968ef020787f34ee8331.tar.bz2 misskey-6439c7b64b31dc9fbc6c968ef020787f34ee8331.zip | |
Revert "refactor: paginationの型を明示する (#12809)" (#12810)
This reverts commit 6855079811401be883167476726644e5730ea792.
Diffstat (limited to 'packages/frontend/src/pages/about.federation.vue')
| -rw-r--r-- | packages/frontend/src/pages/about.federation.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/pages/about.federation.vue b/packages/frontend/src/pages/about.federation.vue index b678db2f29..e01c5f7542 100644 --- a/packages/frontend/src/pages/about.federation.vue +++ b/packages/frontend/src/pages/about.federation.vue @@ -80,7 +80,7 @@ const pagination = { state.value === 'notResponding' ? { notResponding: true } : {}), })), -} satisfies Paging; +} as Paging; function getStatus(instance) { if (instance.isSuspended) return 'Suspended'; |