Minor fixes to get build to pass

This commit is contained in:
Ozzie Gooen 2022-05-27 07:23:17 -04:00
parent afb7613bcc
commit 8482a51332

View File

@ -8,10 +8,7 @@ import styled from "styled-components";
import { useForm, useWatch } from "react-hook-form"; import { useForm, useWatch } from "react-hook-form";
import * as yup from "yup"; import * as yup from "yup";
import { yupResolver } from "@hookform/resolvers/yup"; import { yupResolver } from "@hookform/resolvers/yup";
import { import { defaultBindings, environment } from "@quri/squiggle-lang";
defaultBindings,
environment,
} from "@quri/squiggle-lang";
interface FieldFloatProps { interface FieldFloatProps {
label: string; label: string;
@ -132,7 +129,9 @@ const schema = yup
type InputProps = { type InputProps = {
label: string; label: string;
children: ReactElement;
}; };
const InputItem: React.FC<InputProps> = ({ label, children }) => ( const InputItem: React.FC<InputProps> = ({ label, children }) => (
<div> <div>
<label>{label}</label> <label>{label}</label>
@ -227,6 +226,7 @@ let SquigglePlayground: FC<PlaygroundProps> = ({
/> />
</InputItem> </InputItem>
<InputItem label="Json Editor for imports"> <InputItem label="Json Editor for imports">
<>
<JsonEditor <JsonEditor
value={importString} value={importString}
onChange={getChangeJson} onChange={getChangeJson}
@ -235,6 +235,7 @@ let SquigglePlayground: FC<PlaygroundProps> = ({
height={100} height={100}
/> />
{importsAreValid ? "Valid" : "Invalid"} {importsAreValid ? "Valid" : "Invalid"}
</>
</InputItem> </InputItem>
</> </>
) : ( ) : (