diff --git a/docs/TroubleShootingSteps.md b/docs/TroubleShootingSteps.md
index d7740fe..5426ecf 100644
--- a/docs/TroubleShootingSteps.md
+++ b/docs/TroubleShootingSteps.md
@@ -70,7 +70,7 @@ Use these as quick reference guides to unblock your deployments.
| Issue/Error Code | Description | Steps to Resolve |
|-----------------|-------------|------------------|
-| **ResourceGroupNotFound** | Specified resource group does not exist | **Option 1:**
- Go to [Azure Portal](https://portal.azure.com/#home)
- Click on **"Resource groups"** option
 - Search for the resource group in the search bar. If it exists, you can proceed

**Option 2:**
- This error can occur if you deploy using the same .env file from a previous deployment
- Create a new environment before redeploying:
`azd env new `
|
+| **ResourceGroupNotFound** | Specified resource group does not exist | **Option 1:**
- Go to [Azure Portal](https://portal.azure.com/#home)
- Click on **"Resource groups"** option
 - Search for the resource group in the search bar. If it exists, you can proceed

**Option 2:**
- This error can occur if you deploy using the same .env file from a previous deployment
- Create a new environment before redeploying:
`azd env new `
|
| **ResourceGroupBeingDeleted** | Resource group is currently being deleted | **Steps:**
- Go to [Azure Portal](https://portal.azure.com/#home)
- Go to resource group option and search for targeted resource group
- If the resource group is being deleted, you cannot use it. Create a new one or use a different resource group
|
| **DeploymentActive** | Another deployment is already in progress in this resource group | - This occurs when a deployment is already in progress and another deployment is triggered in the same resource group
- Cancel the ongoing deployment before starting a new one
- Do not initiate a new deployment until the previous one is completed
|
| **DeploymentCanceled** | Deployment was canceled before completion | - **Check deployment history:**
Go to Azure Portal → Resource Group → Deployments
Review the detailed error message - **Identify the root cause:**
Dependent resource failed to deploy
Validation error occurred
Manual cancellation was triggered - **Validate template:**
`az deployment group validate --resource-group --template-file main.bicep` - **Check resource limits/quotas**
- **Fix the failed dependency**
- **Retry deployment:**
`az deployment group create --resource-group --template-file main.bicep`
💡 **Note:** DeploymentCanceled is a wrapper error — check inner errors in deployment logs |