fix(MainPage): fix filter condition in ComponentsComponent to correctly filter component flows
This commit is contained in:
parent
863cc853c3
commit
e5626cb247
1 changed files with 1 additions and 1 deletions
|
|
@ -98,7 +98,7 @@ export default function ComponentsComponent() {
|
|||
</>
|
||||
) : (
|
||||
flows
|
||||
.filter((flow) => !flow.is_component)
|
||||
.filter((flow) => flow.is_component)
|
||||
.map((flow, idx) => (
|
||||
<CardComponent
|
||||
key={idx}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue