diff --git a/infra/app/identity.bicep b/infra/app/identity.bicep
deleted file mode 100644
index 759038b..0000000
--- a/infra/app/identity.bicep
+++ /dev/null
@@ -1,19 +0,0 @@
-metadata description = 'Create identity resources.'
-
-param identityName string
-param location string = resourceGroup().location
-param tags object = {}
-
-module userAssignedIdentity '../core/security/identity/user-assigned.bicep' = {
- name: 'user-assigned-identity'
- params: {
- name: identityName
- location: location
- tags: tags
- }
-}
-
-output name string = userAssignedIdentity.outputs.name
-output resourceId string = userAssignedIdentity.outputs.resourceId
-output principalId string = userAssignedIdentity.outputs.principalId
-output clientId string = userAssignedIdentity.outputs.clientId
diff --git a/src/web/Pages/Index.razor b/src/web/Pages/Index.razor
index c0c487c..fe21dc4 100644
--- a/src/web/Pages/Index.razor
+++ b/src/web/Pages/Index.razor
@@ -12,7 +12,7 @@
Restart
-
+
Walk through the code for this sample application