Skip to content

Commit f35b88f

Browse files
committed
Hide pinned commands by default in the HomeView
1 parent 3365084 commit f35b88f

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/deploy-website.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
with:
7171
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
7272
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
73-
aws-region: ${{ secrets.AWS_REGION }} # e.g., us-east-1
73+
aws-region: ${{ secrets.AWS_REGION }}
7474

7575
- name: Deploy to S3 Bucket
7676
if: env.S3_BUCKET

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<a href="https://marketplace.visualstudio.com/items?itemName=robertpiosik.gemini-coder" target="_blank"><img src="https://img.shields.io/badge/Install-VS_Code_Marketplace-blue" alt="Get from Visual Studio Code Marketplace" /></a>
44

5-
AI pair programming in your browser. CWC is an open source tool that connects your editor with 15+ free chatbots. One-shot any task, save money and time.
5+
CWC is a 100% free and open source tool that connects your editor with 15+ free chatbots. One-shot any task, save money and time.
66

77
**Initializes chats in a web browser hands-free** \
88
**Automatically applies chat responses** \

packages/vscode/src/view/frontend/home/HomeView/HomeView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ export const HomeView: React.FC<Props> = (props) => {
9494
const [is_buy_me_coffee_hovered, set_is_buy_me_coffee_hovered] =
9595
useState(false)
9696
const [is_showing_pinned_commands, set_is_showing_pinned_commands] =
97-
useState(true)
97+
useState(false)
9898

9999
const calculate_dropdown_max_width = () => {
100100
if (!container_ref.current || !switch_container_ref.current) return

0 commit comments

Comments
 (0)