Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
huggingchat/chat-ui
nirdrang
/
chat-ui_test
like
0
Build error
App
Files
Files
Community
a03d289
chat-ui_test
/
src
/
routes
/
r
/
[id]
/
+page.ts
nsarrazin
HF staff
Remove shared routes (#478)
a799675
unverified
about 1 year ago
raw
Copy download link
history
blame
Safe
144 Bytes
import
{ redirect }
from
"@sveltejs/kit"
;
export
const
load
=
async
(
{ params }
) => {
throw
redirect
(
302
,
"../conversation/"
+ params.
id
);
};