Unable to See Links Between Azure Resources in Resource Visualizer After Deploying with Bicep

I'm deploying a stack using Bicep and GitHub Actions. The deployment process involves using the azure/bicep-deploy@v2 GitHub Action with whatif first and then the actual deployment.
However, after the deployment, I am unable to see the links between various Azure resources in the Resource Visualizer. I tried using the Azure CLI Resource Link feature, but it doesn't seem to resolve the issue.
Interestingly, I can see some hidden links between my Function App and Application Insights, but I'm not sure how they were created. Additionally, I can see the links (lines/connections) between resources during the development of my Bicep file, using the dependsOn
property to define relationships etc., but these connections don't show up in the Resource Visualizer post-deployment.
Steps I have taken:
Deployed using Bicep in a GitHub Action with the azure/bicep-deploy@v2 action.Ran whatif to preview the deployment and then executed the actual deployment.Used the Azure CLI command for linking resources, but no visible change in the Resource Visualizer.
Has anyone encountered a similar issue or could provide guidance on how to correctly visualize and manage these links in the Azure Resource Visualizer after deploying resources with Bicep?