Skip to content

Commit

Permalink
fix: result from algolia (#117)
Browse files Browse the repository at this point in the history
* fix: formatting identifier because it cant be camel case

* fix: algolia search
  • Loading branch information
nsdonato authored Mar 31, 2024
1 parent 6518f80 commit 5bfd226
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/sidebar-menu/sidebar-details.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const SidebarDetails = ({ name, children }: SidebarDetailProps) => {
<details>
<summary
className={cn({
'selected-menu': actualPath === name.toLowerCase(),
'selected-menu': actualPath.includes(name.toLowerCase().slice(0, 5)),
})}>
{name}
</summary>
Expand Down
2 changes: 1 addition & 1 deletion db/extensions/chrome.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { DocPage, LinkType } from '@/lib/db-types'

const chrome: DocPage = {
title: 'Extensions',
title: 'Extensiones',
description: [
'Extensiones para que tu día a día con Google Chrome, sea más productivo.',
],
Expand Down

0 comments on commit 5bfd226

Please sign in to comment.