-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Build Errors #1029
Build Errors #1029
Conversation
@@ -40,7 +39,7 @@ const ZoneConfigPanel: React.FC<PanelPropsImpl> = ({ panelId, openLocation, side | |||
<NumberInput label="Points" placeholder="Zone points" defaultValue={1} onInput={v => setPoints(v || 1)} /> | |||
<Checkbox label="Destroy Gamepiece" defaultState={false} onClick={setDestroy} /> | |||
<Checkbox label="Persistent Points" defaultState={false} onClick={setPersistent} /> | |||
<Slider | |||
{/* <Slider |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note: Sliders being commented will be overridden by PR #1021
@@ -22,11 +21,11 @@ const ZoneConfigPanel: React.FC<PanelPropsImpl> = ({ panelId, openLocation, side | |||
// then set all default values to the state of the zone | |||
const [, setName] = useState<string>("") | |||
const [alliance, setAlliance] = useState<"red" | "blue">("blue") | |||
const [, setParent] = useState<string>("") | |||
const [,] = useState<string>("") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note: Also going to be overriden by Zone Config PR
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It runs 👍 ; Magnificent
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It builds!
Description
Fixed build errors caused by preferences being of type 'object' and what I assume was a merge conflict to do with sliders