diff options
| author | Chocolate Pie <106949016+chocolate-pie@users.noreply.github.com> | 2024-07-17 21:52:05 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-17 21:52:05 +0900 |
| commit | 68bcd91d57c9a11ae4191dfefa156c4454c8a073 (patch) | |
| tree | 39ebb9e32b69230f464776f19499a4bc3f64f048 /packages/frontend/src/scripts/get-user-menu.ts | |
| parent | fix changelog (wrong category) (diff) | |
| download | sharkey-68bcd91d57c9a11ae4191dfefa156c4454c8a073.tar.gz sharkey-68bcd91d57c9a11ae4191dfefa156c4454c8a073.tar.bz2 sharkey-68bcd91d57c9a11ae4191dfefa156c4454c8a073.zip | |
chore: Use clipboard API directly (#14227)
* chore: Use clipboard API directly
* fix: Fix lint
Diffstat (limited to 'packages/frontend/src/scripts/get-user-menu.ts')
| -rw-r--r-- | packages/frontend/src/scripts/get-user-menu.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/scripts/get-user-menu.ts b/packages/frontend/src/scripts/get-user-menu.ts index 2d1fea8ea4..dacafb859f 100644 --- a/packages/frontend/src/scripts/get-user-menu.ts +++ b/packages/frontend/src/scripts/get-user-menu.ts @@ -7,7 +7,7 @@ import { toUnicode } from 'punycode'; import { defineAsyncComponent, ref, watch } from 'vue'; import * as Misskey from 'misskey-js'; import { i18n } from '@/i18n.js'; -import copyToClipboard from '@/scripts/copy-to-clipboard.js'; +import { copyToClipboard } from '@/scripts/copy-to-clipboard.js'; import { host, url } from '@/config.js'; import * as os from '@/os.js'; import { misskeyApi } from '@/scripts/misskey-api.js'; |