Skip to content

Commit 454f524

Browse files
author
Chris Hasson
committed
chore(ui): fix welcome view component
The `WelcomeView.tsx` file has been deleted. The import path in `App.tsx` was updated to correct the casing, reflecting the removal of this component. Avoids this error: @roo-code/vscode-webview:check-types: @roo-code/vscode-webview:check-types: src/App.tsx:17:25 - error TS1261: Already included file name '/Users/hassoncs/Workspaces/kilocode/webview-ui/src/components/kilocode/Welcome/WelcomeView.tsx' differs from file name '/Users/hassoncs/Workspaces/kilocode/webview-ui/src/components/kilocode/welcome/WelcomeView.tsx' only in casing. @roo-code/vscode-webview:check-types: The file is in the program because: @roo-code/vscode-webview:check-types: Imported via "./components/kilocode/Welcome/WelcomeView" from file '/Users/hassoncs/Workspaces/kilocode/webview-ui/src/App.tsx' @roo-code/vscode-webview:check-types: Matched by include pattern 'src' in '/Users/hassoncs/Workspaces/kilocode/webview-ui/tsconfig.json' @roo-code/vscode-webview:check-types: @roo-code/vscode-webview:check-types: 17 import WelcomeView from "./components/kilocode/Welcome/WelcomeView" // kilocode_change
1 parent f9104a0 commit 454f524

File tree

3 files changed

+2
-213
lines changed

3 files changed

+2
-213
lines changed

pnpm-lock.yaml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webview-ui/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { ExtensionStateContextProvider, useExtensionState } from "./context/Exte
1414
import ChatView, { ChatViewRef } from "./components/chat/ChatView"
1515
import HistoryView from "./components/history/HistoryView"
1616
import SettingsView, { SettingsViewRef } from "./components/settings/SettingsView"
17-
import WelcomeView from "./components/kilocode/Welcome/WelcomeView" // kilocode_change
17+
import WelcomeView from "./components/kilocode/welcome/WelcomeView" // kilocode_change
1818
import ProfileView from "./components/kilocode/profile/ProfileView" // kilocode_change
1919
import McpView from "./components/mcp/McpView"
2020
import { MarketplaceView } from "./components/marketplace/MarketplaceView"

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

Lines changed: 0 additions & 211 deletions
This file was deleted.

0 commit comments

Comments
 (0)