From 5c4f4f99d2204ccec677fda0e08bdfa6bbf9bddf Mon Sep 17 00:00:00 2001 From: riccardocarzaniga Date: Tue, 22 Jul 2025 00:15:06 +1000 Subject: [PATCH 1/3] Fixed shortcut to open Chat View on MacOS --- 02-building-the-weather-app-core.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02-building-the-weather-app-core.md b/02-building-the-weather-app-core.md index a1ef46d..ed7089f 100644 --- a/02-building-the-weather-app-core.md +++ b/02-building-the-weather-app-core.md @@ -14,7 +14,7 @@ 1. Create a Basic Layout - - Open the Copilot **Chat View** (`Ctrl+Alt+I` or `Cmd+Alt+I`) + - Open the Copilot **Chat View** (`Ctrl+Alt+I` or `Ctrl+Cmd+I`) - Prompt Copilot with a **workspace** query like the following: ```md From e524c994f48808cb856e6b6291772215869d9cbf Mon Sep 17 00:00:00 2001 From: riccardocarzaniga Date: Tue, 22 Jul 2025 00:17:53 +1000 Subject: [PATCH 2/3] Fixed convention for ENV vars in Vite projectes --- 02-building-the-weather-app-core.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02-building-the-weather-app-core.md b/02-building-the-weather-app-core.md index ed7089f..69489d3 100644 --- a/02-building-the-weather-app-core.md +++ b/02-building-the-weather-app-core.md @@ -39,7 +39,7 @@ - Add the API key: ```env - REACT_APP_WEATHER_API_KEY=your_api_key_here + VITE_WEATHER_API_KEY=your_api_key_here ``` 3. Fetch Weather Data From 55f82865d5f17cc26b03390ff6f72602e40a94bc Mon Sep 17 00:00:00 2001 From: riccardocarzaniga Date: Tue, 22 Jul 2025 00:23:07 +1000 Subject: [PATCH 3/3] Fixed more shortcuts on how to open Chat View on MacOS --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 628f316..a53ddf7 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ By the end of this workshop, participants will: ## Interacting with GitHub Copilot Throughout the lab tasks, you will need to interact with Copilot. There are several methods of interacting, including: * Inline Chat (`Ctrl+I` or `Cmd+I`) -* Chat View (`Ctrl+Alt+I` or `Cmd+Alt+I`) +* Chat View (`Ctrl+Alt+I` or `Ctrl+Cmd+I`) * Inline suggestion (code completion) It is recommended that you try each method as you progress through this lab, as each method has unique strengths. While we often suggest a particular method of interaction, that may not be the only way to complete a lab task, so you're invited to try other methods too.