Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
150 changes: 56 additions & 94 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/client/src/Home/Form.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const FormContainer = styled('form')(({ theme }) => ({

export function Form(props) {
const [version, setVersion] = React.useState('v1.0');
const [endpoint, setEndpoint] = React.useState('/me');
const [endpoint, setEndpoint] = React.useState('/schedule_integration');
const [method, setMethod] = React.useState('get');
const [qs, setQs] = React.useState([]);

Expand Down
1 change: 1 addition & 0 deletions packages/client/src/Home/MethodInput.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export function MethodInput(props) {
<FormLabel component="legend">Method</FormLabel>
<RadioGroup row aria-label="gender" name="method" value={props.value} onChange={onChange}>
<FormControlLabel value="get" control={<Radio />} label="GET" />
<FormControlLabel value="put" control={<Radio />} label="PUT" />
</RadioGroup>
</FormControl>
);
Expand Down
Loading