We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b59d4b commit dfbf42eCopy full SHA for dfbf42e
web/renderer/components/pageComponents/DatabasePage/ForTests/TestItem/index.tsx
@@ -41,7 +41,9 @@ export default function TestItem({
41
onDeleteTest,
42
}: Props) {
43
const [showDeleteConfirm, setShowDeleteConfirm] = useState(false);
44
- const [localAssertionValue, setLocalAssertionValue] = useState(test.assertionValue);
+ const [localAssertionValue, setLocalAssertionValue] = useState(
45
+ test.assertionValue,
46
+ );
47
const debounceRef = useRef<ReturnType<typeof setTimeout> | null>(null);
48
49
const debouncedOnUpdateTest = useCallback(
0 commit comments