Skip to content

Commit

Permalink
Update src/layouts/rest-api/endpoint/playground/try/ReqSample.tsx
Browse files Browse the repository at this point in the history
Co-authored-by: Cosmo Shin (신의하) <[email protected]>
  • Loading branch information
CirnoV and XiNiHa authored Apr 16, 2024
1 parent 781a886 commit d61ed48
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/layouts/rest-api/endpoint/playground/try/ReqSample.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ export default function ReqSample({ harRequestSignal }: ReqSampleProps) {
<div className="flex-shrink-0">
<select
value={targetKeySignal.value}
onChange={(e) =>
(targetKeySignal.value = String(e.currentTarget.value))
}
onChange={(e) => {
targetKeySignal.value = String(e.currentTarget.value);
}}
>
{availableTargets.map((target) => (
<option key={target.key} value={target.key}>
Expand Down

0 comments on commit d61ed48

Please sign in to comment.