Skip to content

Commit

Permalink
change default/empty query
Browse files Browse the repository at this point in the history
Signed-off-by: Tyler Ohlsen <[email protected]>
  • Loading branch information
ohltyler committed Oct 30, 2024
1 parent 3fde8f2 commit aa30b2c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export function EditQueryModal(props: EditQueryModalProps) {
}) as RequestSchema;

// persist standalone values. update / initialize when it is first opened
const [tempRequest, setTempRequest] = useState<string>('[]');
const [tempRequest, setTempRequest] = useState<string>('{}');
const [tempErrors, setTempErrors] = useState<boolean>(false);

// Form state
Expand Down

0 comments on commit aa30b2c

Please sign in to comment.