mirror of
https://github.com/soconnor0919/hristudio.git
synced 2026-03-23 19:27:51 -04:00
feat: introduce conditional steps and branching logic to the experiment wizard and designer, along with new core and WoZ plugins.
This commit is contained in:
@@ -29,12 +29,13 @@ interface WizardViewProps {
|
||||
demographics: Record<string, unknown> | null;
|
||||
};
|
||||
};
|
||||
userRole: string;
|
||||
}
|
||||
|
||||
export function WizardView({ trial }: WizardViewProps) {
|
||||
export function WizardView({ trial, userRole }: WizardViewProps) {
|
||||
return (
|
||||
<div className="h-full">
|
||||
<WizardInterface trial={trial} userRole="wizard" />
|
||||
<div className="h-full max-h-full w-full overflow-hidden">
|
||||
<WizardInterface trial={trial} userRole={userRole} />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user