diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-08-26 08:50:34 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-08-26 08:50:34 +0900 |
| commit | 506c8a259becee338f4aabb2307a5c68e6891589 (patch) | |
| tree | b385de082d866b0a78d56984773579c8c68ed5b7 /packages/frontend/src/pages/settings | |
| parent | Update CHANGELOG.md (diff) | |
| download | misskey-506c8a259becee338f4aabb2307a5c68e6891589.tar.gz misskey-506c8a259becee338f4aabb2307a5c68e6891589.tar.bz2 misskey-506c8a259becee338f4aabb2307a5c68e6891589.zip | |
refactor
Diffstat (limited to 'packages/frontend/src/pages/settings')
| -rw-r--r-- | packages/frontend/src/pages/settings/webhook.new.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/pages/settings/webhook.new.vue b/packages/frontend/src/pages/settings/webhook.new.vue index e853f967cb..6c4dff5551 100644 --- a/packages/frontend/src/pages/settings/webhook.new.vue +++ b/packages/frontend/src/pages/settings/webhook.new.vue @@ -61,7 +61,7 @@ const event_reaction = ref(true); const event_mention = ref(true); async function create(): Promise<void> { - const events = []; + const events: string[] = []; if (event_follow.value) events.push('follow'); if (event_followed.value) events.push('followed'); if (event_note.value) events.push('note'); |