diff --git a/docs/integrations/dynamic-secrets.mdx b/docs/integrations/dynamic-secrets.mdx
index e2b5f0a46..84ff43ab5 100644
--- a/docs/integrations/dynamic-secrets.mdx
+++ b/docs/integrations/dynamic-secrets.mdx
@@ -6,4 +6,4 @@ description: "Browse and search through all available dynamic secrets for Infisi
import { DynamicSecretsBrowser } from "/snippets/DynamicSecretsBrowser.jsx";
-
\ No newline at end of file
+
diff --git a/docs/snippets/AppConnectionsBrowser.jsx b/docs/snippets/AppConnectionsBrowser.jsx
index 6b9a981dc..73e88fd01 100644
--- a/docs/snippets/AppConnectionsBrowser.jsx
+++ b/docs/snippets/AppConnectionsBrowser.jsx
@@ -63,7 +63,7 @@ export const AppConnectionsBrowser = () => {
}
return filtered;
- }, [connections, searchTerm, selectedCategory]);
+ }, [searchTerm, selectedCategory]);
return (
@@ -118,7 +118,7 @@ export const AppConnectionsBrowser = () => {
- ) : null}
+ ) : (
+
+
No app connections found matching your criteria.
+ {searchTerm && (
+
Try adjusting your search terms or category filter.
+ )}
+
+ )}
);
};
\ No newline at end of file
diff --git a/docs/snippets/DynamicSecretsBrowser.jsx b/docs/snippets/DynamicSecretsBrowser.jsx
index 46f8585c9..3de248170 100644
--- a/docs/snippets/DynamicSecretsBrowser.jsx
+++ b/docs/snippets/DynamicSecretsBrowser.jsx
@@ -48,7 +48,7 @@ export const DynamicSecretsBrowser = () => {
}
return filtered;
- }, [dynamicSecrets, searchTerm, selectedCategory]);
+ }, [searchTerm, selectedCategory]);
return (
@@ -103,7 +103,7 @@ export const DynamicSecretsBrowser = () => {
- ) : null}
+ ) : (
+
+
+
No dynamic secrets found
+ {searchTerm && (
+
Try adjusting your search terms or filters
+ )}
+
+
+ )}
);
};
\ No newline at end of file
diff --git a/docs/snippets/FrameworkIntegrationsBrowser.jsx b/docs/snippets/FrameworkIntegrationsBrowser.jsx
index 0644d0826..2ee650f7d 100644
--- a/docs/snippets/FrameworkIntegrationsBrowser.jsx
+++ b/docs/snippets/FrameworkIntegrationsBrowser.jsx
@@ -43,7 +43,7 @@ export const FrameworkIntegrationsBrowser = () => {
}
return filtered;
- }, [integrations, searchTerm, selectedCategory]);
+ }, [searchTerm, selectedCategory]);
return (
@@ -98,7 +98,7 @@ export const FrameworkIntegrationsBrowser = () => {
- ) : null}
+ ) : (
+
+
No framework integrations found matching your criteria.
+ {searchTerm && (
+
Try adjusting your search terms or category filter.
+ )}
+
+ )}
);
};
\ No newline at end of file
diff --git a/docs/snippets/MachineAuthenticationBrowser.jsx b/docs/snippets/MachineAuthenticationBrowser.jsx
index cf1a5a860..e6b5aa699 100644
--- a/docs/snippets/MachineAuthenticationBrowser.jsx
+++ b/docs/snippets/MachineAuthenticationBrowser.jsx
@@ -21,8 +21,8 @@ export const MachineAuthenticationBrowser = () => {
{"name": "OIDC Auth (Terraform Cloud)", "slug": "oidc-auth-terraform", "path": "/documentation/platform/identities/oidc-auth/terraform-cloud", "description": "Learn how to authenticate Terraform Cloud using OIDC.", "category": "Token-based"},
{"name": "OIDC Auth (SPIRE)", "slug": "oidc-auth-spire", "path": "/documentation/platform/identities/oidc-auth/spire", "description": "Learn how to authenticate workloads using SPIFFE/SPIRE OIDC.", "category": "Token-based"},
{"name": "TLS Certificate Auth", "slug": "tls-cert-auth", "path": "/documentation/platform/identities/tls-cert-auth", "description": "Learn how to authenticate machines using TLS client certificates.", "category": "Certificate-based"},
- {"name": "LDAP Auth (General)", "slug": "ldap-auth-general", "path": "/documentation/platform/identities/ldap-auth/general", "description": "Learn how to authenticate machines using LDAP credentials.", "category": "Certificate-based"},
- {"name": "LDAP Auth (JumpCloud)", "slug": "ldap-auth-jumpcloud", "path": "/documentation/platform/identities/ldap-auth/jumpcloud", "description": "Learn how to authenticate machines using JumpCloud LDAP.", "category": "Certificate-based"}
+ {"name": "LDAP Auth (General)", "slug": "ldap-auth-general", "path": "/documentation/platform/identities/ldap-auth/general", "description": "Learn how to authenticate machines using LDAP credentials.", "category": "Directory-based"},
+ {"name": "LDAP Auth (JumpCloud)", "slug": "ldap-auth-jumpcloud", "path": "/documentation/platform/identities/ldap-auth/jumpcloud", "description": "Learn how to authenticate machines using JumpCloud LDAP.", "category": "Directory-based"}
];
const filteredAuthMethods = useMemo(() => {
@@ -32,7 +32,7 @@ export const MachineAuthenticationBrowser = () => {
method.name.toLowerCase().includes(searchTerm.toLowerCase()) ||
method.description.toLowerCase().includes(searchTerm.toLowerCase())
);
- }, [authMethods, searchTerm]);
+ }, [searchTerm]);
return (
@@ -67,7 +67,7 @@ export const MachineAuthenticationBrowser = () => {
- ) : null}
+ ) : (
+
+
No authentication methods found matching your criteria.
+ {searchTerm && (
+
Try adjusting your search terms.
+ )}
+
+ )}
);
};
\ No newline at end of file
diff --git a/docs/snippets/RotationsBrowser.jsx b/docs/snippets/RotationsBrowser.jsx
index 0077e0798..988c217bc 100644
--- a/docs/snippets/RotationsBrowser.jsx
+++ b/docs/snippets/RotationsBrowser.jsx
@@ -35,7 +35,7 @@ export const RotationsBrowser = () => {
}
return filtered;
- }, [rotations, searchTerm, selectedCategory]);
+ }, [searchTerm, selectedCategory]);
return (
@@ -90,7 +90,7 @@ export const RotationsBrowser = () => {
- ) : null}
+ ) : (
+
+
No secret rotations found matching your criteria.
+
+ )}
);
};
\ No newline at end of file
diff --git a/docs/snippets/SecretSyncsBrowser.jsx b/docs/snippets/SecretSyncsBrowser.jsx
index 5ae9f9c7a..e49765940 100644
--- a/docs/snippets/SecretSyncsBrowser.jsx
+++ b/docs/snippets/SecretSyncsBrowser.jsx
@@ -53,7 +53,7 @@ export const SecretSyncsBrowser = () => {
}
return filtered;
- }, [syncs, searchTerm, selectedCategory]);
+ }, [searchTerm, selectedCategory]);
return (
@@ -108,7 +108,7 @@ export const SecretSyncsBrowser = () => {
- ) : null}
+ ) : (
+
+
No secret syncs found matching your criteria.
+ {searchTerm && (
+
Try adjusting your search terms or category filter.
+ )}
+
+ )}
);
};
\ No newline at end of file
diff --git a/docs/snippets/UserAuthenticationBrowser.jsx b/docs/snippets/UserAuthenticationBrowser.jsx
index 82dbd5b09..c8feacc1b 100644
--- a/docs/snippets/UserAuthenticationBrowser.jsx
+++ b/docs/snippets/UserAuthenticationBrowser.jsx
@@ -43,7 +43,7 @@ export const UserAuthenticationBrowser = () => {
}
return filtered;
- }, [authMethods, searchTerm, selectedCategory]);
+ }, [searchTerm, selectedCategory]);
return (
@@ -98,7 +98,7 @@ export const UserAuthenticationBrowser = () => {
- ) : null}
+ ) : (
+
+
No authentication methods found matching your criteria.
+
Try adjusting your search terms or category filter.
+
+ )}
);
};
\ No newline at end of file