Skip to content

Commit

Permalink
fix: correct paths for help (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomwisecodes authored and codeincontext committed Sep 12, 2024
1 parent 8f0387c commit 5953b7e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export function ChatHistory() {
AI experiments page
</ChatButton>
<ChatButton
href={ailaId ? `aila/help/?ailaId=${ailaId}` : "/help"}
href={ailaId ? `aila/help/?ailaId=${ailaId}` : "/aila/help"}
variant="text-link"
>
<span className="scale-90">
Expand Down
2 changes: 1 addition & 1 deletion apps/nextjs/src/components/AppComponents/Chat/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export function Header() {
<div className="flex items-center justify-end space-x-12">
<Link
className="hidden items-center sm:flex"
href={ailaId ? `aila/help/?ailaId=${ailaId}` : "/help"}
href={ailaId ? `aila/help/?ailaId=${ailaId}` : "/aila/help"}
target="_blank"
>
<OakIcon iconName="question-mark" $width="all-spacing-6" />
Expand Down

0 comments on commit 5953b7e

Please sign in to comment.