improvements: minor textual improvements

This commit is contained in:
Scott Wilson
2025-02-07 16:58:11 -08:00
parent 7d9c5657aa
commit 49797c3c13
2 changed files with 3 additions and 2 deletions

View File

@@ -87,7 +87,7 @@ description: "Learn how to configure a Azure Key Vault Sync for Infisical."
"initialSyncBehavior": "overwrite-destination"
},
"destinationConfig": {
"vaultBaseUrl: "https://my-key-vault.vault.azure.net"
"vaultBaseUrl": "https://my-key-vault.vault.azure.net"
}
}'
```

View File

@@ -4,6 +4,7 @@ import { useNavigate, useParams, useSearch } from "@tanstack/react-router";
import { createNotification } from "@app/components/notifications";
import { ContentLoader } from "@app/components/v2";
import { ROUTE_PATHS } from "@app/const/routes";
import { APP_CONNECTION_MAP } from "@app/helpers/appConnections";
import {
AzureAppConfigurationConnectionMethod,
AzureKeyVaultConnectionMethod,
@@ -283,7 +284,7 @@ export const OAuthCallbackPage = () => {
if (data) {
createNotification({
text: `Successfully ${data.connectionId ? "updated" : "added"} ${data.appConnectionName || ""} Connection`,
text: `Successfully ${data.connectionId ? "updated" : "added"} ${data.appConnectionName ? APP_CONNECTION_MAP[data.appConnectionName as AppConnection].name : ""} Connection`,
type: "success"
});
} else {