Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
huggingchat/chat-ui
nirdrang
/
chat-ui_test
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
chat-ui_test
/
src
/
routes
/
r
/
[id]
/
+page.ts
nsarrazin
Remove shared routes (#478)
a799675
unverified
almost 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
144 Bytes
import
{ redirect }
from
"@sveltejs/kit"
;
export
const
load
=
async
(
{ params }
) => {
throw
redirect
(
302
,
"../conversation/"
+ params.
id
);
};