update hardcoded paths

This commit is contained in:
jeremyphilemon 2026-02-23 08:26:37 -08:00
parent 0c8128cd62
commit 72597d6f68
9 changed files with 23 additions and 18 deletions

View file

@ -37,7 +37,7 @@ function PureSuggestedActions({ chatId, sendMessage }: SuggestedActionsProps) {
<Suggestion
className="h-auto w-full whitespace-normal p-3 text-left"
onClick={(suggestion) => {
window.history.pushState({}, "", `/chat/${chatId}`);
window.history.pushState({}, "", `${process.env.NEXT_PUBLIC_BASE_PATH ?? ""}/chat/${chatId}`);
sendMessage({
role: "user",
parts: [{ type: "text", text: suggestion }],