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
2 people authored and ckoegel committed Nov 1, 2023
1 parent 1277d0f commit bc5b72e
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 bc5b72e

Please sign in to comment.