Skip to content

Commit

Permalink
fix: style RefreshToken URL as <code> in the authorization section
Browse files Browse the repository at this point in the history
Co-authored-by: szaszeke <Szabolcs.Szekely@t-systems.com>
  • Loading branch information
ckszabi and szaszeke authored Sep 11, 2023
1 parent 98813e6 commit 1d61001
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/SecurityRequirement/OAuthFlow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export function OAuthFlowComponent(props: OAuthFlowProps) {
{flow!.refreshUrl && (
<SecurityRow>
<strong> Refresh URL: </strong>
{flow!.refreshUrl}
<code>{flow!.refreshUrl}</code>
</SecurityRow>
)}
{!!scopesNames.length && (
Expand Down

0 comments on commit 1d61001

Please sign in to comment.