Skip to content

Commit

Permalink
fix: fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
iykazrji committed Dec 17, 2024
1 parent 2457d94 commit c4650fe
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions account-kit/rn-signer/example/redirect-server/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ const port = process.env.PORT || 5500;
const appScheme = process.env.APP_SCHEME || "rn-signer-demo";

app.get("/", (req, res) => {
const bundle = req.query.bundle;
const orgId = req.query.orgId;
const bundle = req.query.bundle;
const orgId = req.query.orgId;

res.redirect(
`${appScheme}://magic-link-auth?bundle=${bundle}&orgId=${orgId}`
);
res.redirect(
`${appScheme}://magic-link-auth?bundle=${bundle}&orgId=${orgId}`
);
});

app.listen(port, () => {
console.log(`Server is running on port ${port}`);
console.log(`Server is running on port ${port}`);
});

0 comments on commit c4650fe

Please sign in to comment.