Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Nazeim committed Nov 29, 2023
1 parent 51ecf6e commit 96ab2c0
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/components/ApiReference/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -401,11 +401,13 @@ const ApiReference = ({
!(specialApiKey as string[]).includes(token) &&
(disabled || loading)
}
className={`${styles.apiParamButton} ${
!(specialApiKey as string[]).includes(token) || disabled
? styles.apiParamButtonDisabled
: ""
}`}
className={
`${styles.apiParamButton} ${
!(specialApiKey as string[]).includes(token) || disabled
? styles.apiParamButtonDisabled
: ""
}`
}
>
{loading ? <LoadingCircle /> : "Test Live API"}
</ApiParamButton>
Expand Down

0 comments on commit 96ab2c0

Please sign in to comment.