mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-17 18:35:19 +02:00
fix: Added API_BASE param for LiteLLM.
This commit is contained in:
parent
cae5f835af
commit
4a2be4b98e
7 changed files with 151 additions and 73 deletions
|
|
@ -9,7 +9,7 @@ interface PageProps {
|
|||
|
||||
export default async function ChatsPage({ params }: PageProps) {
|
||||
// Get search space ID from the route parameter
|
||||
const { search_space_id: searchSpaceId } = params;
|
||||
const { search_space_id: searchSpaceId } = await Promise.resolve(params);
|
||||
|
||||
return (
|
||||
<Suspense fallback={<div className="flex items-center justify-center h-[60vh]">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue