fix(profile): pass in correct bluesky url for redirection

This commit is contained in:
ItsRauf
2023-07-25 20:58:31 -04:00
parent 4af5ccc1a3
commit 9822af41f3
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@@ -131,3 +131,4 @@ dist
.dev.vars .dev.vars
tunnel.yml tunnel.yml
.wrangler

View File

@@ -18,7 +18,7 @@ export const getProfile: Handler<
return c.html( return c.html(
<Profile <Profile
profile={data} profile={data}
url={c.req.url} url={c.req.path}
appDomain={c.env.FIXBLUESKY_APP_DOMAIN} appDomain={c.env.FIXBLUESKY_APP_DOMAIN}
/> />
); );