fix: Correct duplicate flow mock name

This commit is contained in:
Faruk AYDIN
2024-09-17 13:05:23 +03:00
parent 8352540fcb
commit c6003b6695

View File

@@ -1,4 +1,4 @@
const getFlowMock = async (flow, steps = []) => {
const duplicateFlowMock = async (flow, steps = []) => {
const data = {
active: flow.active,
id: flow.id,
@@ -34,4 +34,4 @@ const getFlowMock = async (flow, steps = []) => {
};
};
export default getFlowMock;
export default duplicateFlowMock;