-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Currently the nodeExtra
variable is typed as:
type ProvVisConfig = {
...
nodeExtra: Record<S, React.ReactElement | null>;
...
}
We should make it partial like so:
nodeExtra: Partial<Record<S, React.ReactElement | null>>;
This stops typescript from complaining that some keys are missing in case we decide that we want to skip extras for certain event types.
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working