Skip to content
This repository was archived by the owner on May 15, 2026. It is now read-only.

Commit abcbf6f

Browse files
committed
feat: add Import Settings link to welcome landing screen
Adds an Import Settings link to the initial welcome screen, allowing users to import settings before setting up a provider. This helps: - Existing users migrating to a fresh install - Enterprises standardizing user setup with imported settings files Closes #10992
1 parent 2584504 commit abcbf6f

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

webview-ui/src/components/welcome/WelcomeViewProvider.tsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,14 @@ const WelcomeViewProvider = () => {
312312
{t("welcome:landing.noAccount")}
313313
</VSCodeLink>
314314
</div>
315+
316+
<div className="mt-2">
317+
<VSCodeLink
318+
onClick={() => vscode.postMessage({ type: "importSettings" })}
319+
className="cursor-pointer">
320+
{t("welcome:importSettings")}
321+
</VSCodeLink>
322+
</div>
315323
</TabContent>
316324
</Tab>
317325
)

0 commit comments

Comments
 (0)