Merge pull request #3 from ThornbushHQ/devel

fix(profile): pass in correct bluesky url for redirection
This commit is contained in:
Rauf
2023-07-25 21:02:45 -04:00
committed by GitHub
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

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

View File

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