(e)
| 206 | }; |
| 207 | |
| 208 | const handleSystemTokenClick = async (e) => { |
| 209 | e.target.select(); |
| 210 | await copy(e.target.value); |
| 211 | showSuccess(t('系统令牌已复制到剪切板')); |
| 212 | }; |
| 213 | |
| 214 | const deleteAccount = async () => { |
| 215 | if (inputs.self_account_deletion_confirmation !== userState.user.username) { |
nothing calls this directly
no test coverage detected