Skip to content

Commit

Permalink
feat(ui): broken links on kbar component
Browse files Browse the repository at this point in the history
  • Loading branch information
mateusfg7 committed Nov 29, 2023
1 parent 6638131 commit 1841b87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/shared/components/kbar/provider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ export function CustomKBarProvider({ children }: { children: ReactNode }) {
section: 'Blog',
keywords: 'posts writing',
icon: <Note weight="duotone" />,
perform: () => push('/')
perform: () => push('/blog')
},
{
id: 'til',
Expand Down Expand Up @@ -191,7 +191,7 @@ export function CustomKBarProvider({ children }: { children: ReactNode }) {
section: 'Blog',
keywords: 'feed rss atom',
icon: <Rss weight="duotone" />,
perform: () => push('/rss')
perform: () => push('/blog/feed')
},
{
id: 'search-posts',
Expand Down

0 comments on commit 1841b87

Please sign in to comment.