Skip to content

Commit

Permalink
fix: Wrong Var Name (#3402)
Browse files Browse the repository at this point in the history
  • Loading branch information
xoscar committed Nov 24, 2023
1 parent 9d8737e commit 83bb2f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/pages/TestSuite/Content.tsx
Expand Up @@ -34,7 +34,7 @@ const Content = () => {
const handleOnDuplicate = useCallback(() => {
onOpen({
heading: `Duplicate Test Suite`,
title: `Create a duplicated version of Test Suite: ${suite.name}`,
title: `Create a duplicated version of Test Suite: ${testSuite.name}`,
okText: 'Duplicate',
onConfirm: () => duplicate(testSuite),
});
Expand Down

0 comments on commit 83bb2f1

Please sign in to comment.