diff --git a/src/frontend/src/pages/MainPage/components/flows/index.tsx b/src/frontend/src/pages/MainPage/components/flows/index.tsx index 3df5e25a4..50eca596d 100644 --- a/src/frontend/src/pages/MainPage/components/flows/index.tsx +++ b/src/frontend/src/pages/MainPage/components/flows/index.tsx @@ -32,6 +32,7 @@ export default function FlowsComponent() { > {flows .filter((flow) => !flow.is_component) + .reverse() .map((flow, idx) => ( { diff --git a/src/frontend/src/types/flow/index.ts b/src/frontend/src/types/flow/index.ts index 785e78bd5..8e58e2577 100644 --- a/src/frontend/src/types/flow/index.ts +++ b/src/frontend/src/types/flow/index.ts @@ -9,6 +9,7 @@ export type FlowType = { style?: FlowStyleType; is_component?: boolean; parent?: string; + date_created?: string; }; export type NodeType = { id: string;