diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-03-14 11:58:41 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-03-14 11:58:41 +0900 |
| commit | daa16d184f9d3d67f05012cdd8d70186dc5fc451 (patch) | |
| tree | de34eefb03e79d5cb0bda62e738aff9f2c92e159 | |
| parent | enhance(frontend): clear all client data when logout (diff) | |
| download | sharkey-daa16d184f9d3d67f05012cdd8d70186dc5fc451.tar.gz sharkey-daa16d184f9d3d67f05012cdd8d70186dc5fc451.tar.bz2 sharkey-daa16d184f9d3d67f05012cdd8d70186dc5fc451.zip | |
🎨
| -rw-r--r-- | packages/frontend/src/pages/settings/accounts.vue | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/frontend/src/pages/settings/accounts.vue b/packages/frontend/src/pages/settings/accounts.vue index 749ae5147f..2fd0a021da 100644 --- a/packages/frontend/src/pages/settings/accounts.vue +++ b/packages/frontend/src/pages/settings/accounts.vue @@ -44,9 +44,8 @@ function menu(host: string, account: Misskey.entities.UserDetailed, ev: MouseEve icon: 'ti ti-switch-horizontal', action: () => switchAccount(host, account.id), }, { - text: i18n.ts.logout, + text: i18n.ts.remove, icon: 'ti ti-trash', - danger: true, action: () => removeAccount(host, account.id), }]; |