Skip to content
Snippets Groups Projects
Unverified Commit 1a096c55 authored by anatawa12's avatar anatawa12 Committed by GitHub
Browse files

refactor: fix lint failure (#11214)

parent 53b1684c
No related branches found
No related tags found
No related merge requests found
......@@ -142,7 +142,7 @@ export function getUserMenu(user: misskey.entities.UserDetailed, router: Router
icon: 'ti ti-share',
text: i18n.ts.copyProfileUrl,
action: () => {
const canonical = user.host === null ? `@${user.username}` : `@${user.username}@${toUnicode(user.host)}`
const canonical = user.host === null ? `@${user.username}` : `@${user.username}@${toUnicode(user.host)}`;
copyToClipboard(`${url}/${canonical}`);
},
}, {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment