Skip to content

Commit 1547f14

Browse files
committed
fix linting
1 parent 9aafe25 commit 1547f14

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

server/index.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ app.get("/api/authorize/authurl", (req: Request, res: Response) => {
4646
// provide query parameter scope=<v2 scopes>
4747
// where <v2 scopes> is space delimited v2 scope specs (url encoded)
4848
// e.g. patient/ExplanationOfBenefit.rs
49-
const redirectUrl = bb.generateAuthorizeUrl(authData) + "&scope=patient%2FPatient.s%20patient%2FExplanationOfBenefit.rs"
49+
const redirectUrl = bb.generateAuthorizeUrl(authData) +
50+
"&scope=patient%2FPatient.s%20patient%2FExplanationOfBenefit.rs"
5051
res.send(redirectUrl);
5152
});
5253

0 commit comments

Comments
 (0)