diff --git a/docs/integrations/app-connections/aws.mdx b/docs/integrations/app-connections/aws.mdx
index 30181213f..cb8a5bce0 100644
--- a/docs/integrations/app-connections/aws.mdx
+++ b/docs/integrations/app-connections/aws.mdx
@@ -101,7 +101,7 @@ Infisical supports two methods for connecting to AWS.
]
}
```
- If using a custom KMS key, be sure to add the IAM role as a key user. 
+ If using a custom KMS key, be sure to add the IAM user or role as a key user. 
Use the following custom policy to grant the minimum permissions required by Infisical to sync secrets to AWS Parameter Store:
@@ -134,7 +134,7 @@ Infisical supports two methods for connecting to AWS.
]
}
```
- If using a custom KMS key, be sure to add the IAM role as a key user. 
+ If using a custom KMS key, be sure to add the IAM user or role as a key user. 
@@ -248,7 +248,7 @@ Infisical supports two methods for connecting to AWS.
]
}
```
- If using a custom KMS key, be sure to add the IAM role as a key user. 
+ If using a custom KMS key, be sure to add the IAM user or role as a key user. 
Use the following custom policy to grant the minimum permissions required by Infisical to sync secrets to AWS Parameter Store:
@@ -281,7 +281,7 @@ Infisical supports two methods for connecting to AWS.
]
}
```
- If using a custom KMS key, be sure to add the IAM role as a key user. 
+ If using a custom KMS key, be sure to add the IAM user or role as a key user. 
diff --git a/frontend/src/components/secret-syncs/forms/CreateSecretSyncForm.tsx b/frontend/src/components/secret-syncs/forms/CreateSecretSyncForm.tsx
index dab582f8a..cd395a400 100644
--- a/frontend/src/components/secret-syncs/forms/CreateSecretSyncForm.tsx
+++ b/frontend/src/components/secret-syncs/forms/CreateSecretSyncForm.tsx
@@ -7,7 +7,7 @@ import { zodResolver } from "@hookform/resolvers/zod";
import { twMerge } from "tailwind-merge";
import { createNotification } from "@app/components/notifications";
-import { Button, FormControl, Modal, ModalContent, Switch } from "@app/components/v2";
+import { Button, FormControl, Switch } from "@app/components/v2";
import { useWorkspace } from "@app/context";
import { SECRET_SYNC_MAP } from "@app/helpers/secretSyncs";
import {
@@ -165,108 +165,87 @@ export const CreateSecretSyncForm = ({ destination, onComplete, onCancel }: Prop
);
return (
- <>
-
);
};