Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove lets go button when kilo code is provider or no provider selected #68

Merged
merged 1 commit into from
Mar 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions webview-ui/src/components/settings/ApiOptions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,6 @@ const ApiOptions = ({
[apiConfiguration],
)

console.log("WTF", selectedProvider)

// Debounced refresh model updates, only executed 250ms after the user
// stops typing.
useDebounce(
Expand Down
3 changes: 1 addition & 2 deletions webview-ui/src/components/welcome/WelcomeView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ const WelcomeView = () => {
vscode.postMessage({ type: "upsertApiConfiguration", text: currentApiConfigName, apiConfiguration })
}, [apiConfiguration, currentApiConfigName])

console.log()
return (
<Tab>
<TabContent className="flex flex-col gap-5">
Expand All @@ -42,7 +41,7 @@ const WelcomeView = () => {
</TabContent>
<div className="sticky bottom-0 bg-vscode-sideBar-background p-5">
<div className="flex flex-col gap-1">
{apiConfiguration?.apiProvider === "kilocode" ? null : (
{!apiConfiguration?.apiProvider || apiConfiguration?.apiProvider === "kilocode" ? null : (
<VSCodeButton onClick={handleSubmit}>{t("welcome:start")}</VSCodeButton>
)}
{errorMessage && <div className="text-vscode-errorForeground">{errorMessage}</div>}
Expand Down