Skip to content

Commit 57755b0

Browse files
committed
Fix tsc errors
1 parent dfe5fd5 commit 57755b0

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

src/core/webview/__tests__/ClineProvider.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -524,6 +524,7 @@ describe("ClineProvider", () => {
524524
browserToolEnabled: true,
525525
telemetrySetting: "unset",
526526
showRooIgnoredFiles: true,
527+
renderContext: "sidebar",
527528
}
528529

529530
const message: ExtensionMessage = {

webview-ui/src/context/ExtensionStateContext.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,8 @@ export const ExtensionStateContextProvider: React.FC<{ children: React.ReactNode
147147
cwd: "",
148148
browserToolEnabled: true,
149149
telemetrySetting: "unset",
150-
showRooIgnoredFiles: true, // Default to showing .rooignore'd files with lock symbol (current behavior)
150+
showRooIgnoredFiles: true, // Default to showing .rooignore'd files with lock symbol (current behavior).
151+
renderContext: "sidebar",
151152
})
152153

153154
const [didHydrateState, setDidHydrateState] = useState(false)

webview-ui/src/context/__tests__/ExtensionStateContext.test.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,7 @@ describe("mergeExtensionState", () => {
202202
apiConfiguration: { providerId: "openrouter" } as ApiConfiguration,
203203
telemetrySetting: "unset",
204204
showRooIgnoredFiles: true,
205+
renderContext: "sidebar",
205206
}
206207

207208
const prevState: ExtensionState = {

0 commit comments

Comments
 (0)