Skip to content

Commit

Permalink
style(request-snippets): change name of active tab class (#9839)
Browse files Browse the repository at this point in the history
Refs #9826
  • Loading branch information
char0n authored Apr 18, 2024
1 parent c452527 commit c2b63ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/plugins/request-snippets/request-snippets.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ const RequestSnippets = ({ request, requestSnippetsSelectors, getComponent }) =>
snippetGenerators.entrySeq().map(([key, gen]) => {
return (
<div
className={classNames("btn", {"curl-command--active": key === activeLanguage })}
className={classNames("btn", {"active": key === activeLanguage })}
style={handleGetBtnStyle(key)}
key={key}
onClick={() => handleGenChange(key)}
Expand Down

0 comments on commit c2b63ab

Please sign in to comment.