fix: update FlowModelRenderer in Grid component to specify showFlowSettings

This commit is contained in:
Zeke Zhang 2025-06-22 15:50:48 +08:00
parent 4f228b2f26
commit da98492008

View File

@ -18,7 +18,7 @@ function Grid({ items }) {
{items.map((item) => {
return (
<div key={item.uid} style={{ marginBottom: 16 }}>
<FlowModelRenderer model={item} key={item.uid} showFlowSettings />
<FlowModelRenderer model={item} key={item.uid} showFlowSettings={{ showBackground: false }} />
</div>
);
})}