Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
huggingchat
/
chat-ui
like
1.09k
Running
App
Files
Files
Community
607
7d8cffd
chat-ui
/
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
);
};