diff options
| author | Marie <github@yuugi.dev> | 2024-09-16 01:14:31 +0200 |
|---|---|---|
| committer | Marie <github@yuugi.dev> | 2024-09-16 01:14:31 +0200 |
| commit | 696c76768da180d3b96b2d4f402a86642dea9f11 (patch) | |
| tree | 817afc6d2f8dd5e0c627e75e5dde3a53b00b54bd /packages/frontend/src/plugin.ts | |
| parent | upd: prompt for confirmation on external links (diff) | |
| download | sharkey-696c76768da180d3b96b2d4f402a86642dea9f11.tar.gz sharkey-696c76768da180d3b96b2d4f402a86642dea9f11.tar.bz2 sharkey-696c76768da180d3b96b2d4f402a86642dea9f11.zip | |
chore: lint
Diffstat (limited to 'packages/frontend/src/plugin.ts')
| -rw-r--r-- | packages/frontend/src/plugin.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/plugin.ts b/packages/frontend/src/plugin.ts index 0f77cd9cb0..9640c988eb 100644 --- a/packages/frontend/src/plugin.ts +++ b/packages/frontend/src/plugin.ts @@ -96,7 +96,7 @@ function createPluginEnv(opts: { plugin: Plugin; storageKey: string }): Record<s utils.assertString(url); const { canceled } = await os.confirm({ type: 'question', - text: i18n.tsx.confirmRemoteUrl({x: url.value}), + text: i18n.tsx.confirmRemoteUrl({ x: url.value }), plain: true, }); if (canceled) return; |