diff --git a/docs/admin/config/webhooks/incoming.mdx b/docs/admin/config/webhooks/incoming.mdx
index 09b4dbd7f..0158f7b7c 100644
--- a/docs/admin/config/webhooks/incoming.mdx
+++ b/docs/admin/config/webhooks/incoming.mdx
@@ -291,7 +291,7 @@ To retain webhook logs for one day:
```json
{
"webhook.logging": {
- "enabled": false,
+ "enabled": true,
"retention": "24h"
}
}
diff --git a/docs/admin/deploy/machine-images/aws-ami.mdx b/docs/admin/deploy/machine-images/aws-ami.mdx
index c59b62b69..f1c3ae3de 100644
--- a/docs/admin/deploy/machine-images/aws-ami.mdx
+++ b/docs/admin/deploy/machine-images/aws-ami.mdx
@@ -8,6 +8,14 @@ Following these docs will provision the following resources:
- A root EBS volume with 50GB of storage
- An additional EBS volume with 500GB of storage for storing code and search indices
+### Sourcegraph AMI account ID
+
+All Sourcegraph AMIs are published from one of the following AWS accounts:
+
+- Account ID: `840044800169`
+- Account ID: `870751268155`
+
+
### Instance size chart
Select an AMI according and instance type to the number of users and repositories you have using this table. If you fall between two sizes, choose the larger of the two.
@@ -26,7 +34,7 @@ Click [here](https://github.com/sourcegraph/deploy#amazon-ec2-amis) to see the c
**The default AMI username is `ec2-user`.**
-AMIs are optimized for the specific set of resources provided by the instance type, please ensure you use the correct AMI for the associated EC2 instance type. You can [resize your EC2 instance anytime](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-resize.html), but your Sourcegraph AMI must match accordingly. If needed, follow the [upgrade steps](#upgrade) to switch to the correct AMI image that is optimized for your EC2 instance type.
+While we recommend certain image types in our sizing chart, AMIs will dynamically use the resources available on the EC2 instance type they are deployed to, provided the minimum amount of resources needed is available. If you would like to resize your EC2 instance, follow the [upgrade steps](#upgrade) to switch to the correct AMI image that is optimized for your EC2 instance type.
---
@@ -35,7 +43,7 @@ Click [here](https://github.com/sourcegraph/deploy#amazon-ec2-amis) to see the c
1. In the [instance size chart](#instance-size-chart), click the link for the AMI that matches your deployment size.
2. Choose **Launch instance from AMI**.
3. Name your instance.
-4. Select an **instance type** according to [the sizing chart](#instance-size-chart).
+4. Select an **instance type** according to [the sizing chart](#instance-size-chart) or your needs.
5. **Key pair (login)**: Select or create a new Key Pair for connecting to your instance securely (this may be required in the event you need support).
6. **Network settings**:
- Under "Auto-assign public IP" select "Enable".
diff --git a/docs/code-search/features.mdx b/docs/code-search/features.mdx
index 69a311dc0..843e6e7c8 100644
--- a/docs/code-search/features.mdx
+++ b/docs/code-search/features.mdx
@@ -3,7 +3,7 @@
Learn and understand more about Sourcegraph's Code Search features and core functionality.
-
+
## Powerful, flexible queries
diff --git a/docs/code-search/index.mdx b/docs/code-search/index.mdx
index 2b7de35c2..845010c87 100644
--- a/docs/code-search/index.mdx
+++ b/docs/code-search/index.mdx
@@ -18,7 +18,7 @@ Sourcegraph's Code Search empowers you to:
-
+
diff --git a/docs/cody/clients/cody-with-sourcegraph.mdx b/docs/cody/clients/cody-with-sourcegraph.mdx
index a769fd14b..64d6562f0 100644
--- a/docs/cody/clients/cody-with-sourcegraph.mdx
+++ b/docs/cody/clients/cody-with-sourcegraph.mdx
@@ -5,7 +5,7 @@
In addition to the Cody extensions for [VS Code](/cody/clients/install-vscode), [JetBrains](/cody/clients/install-jetbrains), [Visual Studio](/cody/clients/install-visual-studio ), and [Eclispe](/cody/clients/install-eclipse) IDEs, Cody is also available in the Sourcegraph web app. Community users can use Cody for free by logging into their accounts on Sourcegraph.com, and enterprise users can use Cody within their Sourcegraph instance.
-
+
## Initial setup
diff --git a/docs/cody/clients/enable-cody-enterprise.mdx b/docs/cody/clients/enable-cody-enterprise.mdx
index 245bdfb62..73933eb45 100644
--- a/docs/cody/clients/enable-cody-enterprise.mdx
+++ b/docs/cody/clients/enable-cody-enterprise.mdx
@@ -3,7 +3,7 @@
Cody enhances your coding experience by providing intelligent code suggestions, context-aware completions, and advanced code analysis. These docs will help you use Cody on your Sourcegraph Enterprise instance.
-
+
## Setting up Cody Enterprise
diff --git a/docs/cody/clients/index.mdx b/docs/cody/clients/index.mdx
index a4d87a5ef..9d2b3cc2e 100644
--- a/docs/cody/clients/index.mdx
+++ b/docs/cody/clients/index.mdx
@@ -7,7 +7,7 @@
-
+
-
+
diff --git a/docs/cody/index.mdx b/docs/cody/index.mdx
index 7aa1a1840..a622d2b7d 100644
--- a/docs/cody/index.mdx
+++ b/docs/cody/index.mdx
@@ -21,9 +21,9 @@ You can start using Cody with one of the following options:
-
+
-
+
## Main features
diff --git a/src/components/mdx/Tabs.tsx b/src/components/mdx/Tabs.tsx
index 5e990363c..e2c6c62e6 100644
--- a/src/components/mdx/Tabs.tsx
+++ b/src/components/mdx/Tabs.tsx
@@ -1,8 +1,8 @@
'use client';
-import React, {ReactNode, useMemo} from 'react';
import {Tab as HeadlessTab} from '@headlessui/react';
import clsx from 'clsx';
+import React, {ReactNode, useMemo} from 'react';
interface TabData {
title: string;
@@ -31,10 +31,10 @@ export function Tabs({children}: TabsProps) {
return (
<>
-