Skip to content

Commit b69f833

Browse files
authored
Merge pull request #4391 from continuedev/nate/fixes0129190
disable tab bar
2 parents 925deb3 + 15cbec7 commit b69f833

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/main.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- id: check
2121
working-directory: .
2222
run: |
23-
if [[ "${{ github.event.release.tag_name }}" == v0.8.*-vscode ]]; then
23+
if [[ "${{ github.event.release.tag_name }}" == v1.0.*-vscode ]]; then
2424
echo "should_run=true" >> $GITHUB_OUTPUT
2525
else
2626
echo "should_run=false" >> $GITHUB_OUTPUT

.github/workflows/preview.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- id: check
2121
working-directory: .
2222
run: |
23-
if [[ "${{ github.event.release.tag_name }}" == v0.9.*-vscode ]]; then
23+
if [[ "${{ github.event.release.tag_name }}" == v1.1.*-vscode ]]; then
2424
echo "should_run=true" >> $GITHUB_OUTPUT
2525
else
2626
echo "should_run=false" >> $GITHUB_OUTPUT

extensions/vscode/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "continue",
33
"icon": "media/icon.png",
44
"author": "Continue Dev, Inc",
5-
"version": "1.1.0",
5+
"version": "1.1.2",
66
"repository": {
77
"type": "git",
88
"url": "https://github.com/continuedev/continue"

gui/src/pages/gui/index.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { History } from "../../components/History";
2-
import { TabBar } from "../../components/TabBar/TabBar";
32
import { Chat } from "./Chat";
43

54
export default function GUI() {
@@ -9,7 +8,8 @@ export default function GUI() {
98
<History />
109
</aside>
1110
<main className="no-scrollbar flex flex-1 flex-col overflow-y-auto">
12-
<TabBar />
11+
{/* Temporarily commenting out until a near-term release when we can at least add an option for users to disable the tab bar */}
12+
{/* <TabBar /> */}
1313
<Chat />
1414
</main>
1515
</div>

0 commit comments

Comments
 (0)