Fix: multi-select default values validation (#12271)

https://github.com/user-attachments/assets/3bea63cc-b098-4252-8787-fc6263f01e8d


Closes #12277

---------

Co-authored-by: prastoin <paul@twenty.com>
Co-authored-by: Charles Bochet <charles@twenty.com>
This commit is contained in:
Abdul Rahman
2025-06-03 18:31:58 +05:30
committed by GitHub
parent eed9125945
commit eb7556e333
29 changed files with 2797 additions and 1472 deletions

View File

@ -8,3 +8,4 @@
*/
export type { EachTestingContext } from './types/EachTestingContext.type';
export type { SuccessfulAndFailingTestCases } from './types/SuccessfulAndFailingTestCases';

View File

@ -0,0 +1,6 @@
import { EachTestingContext } from '@/testing/types/EachTestingContext.type';
export type SuccessfulAndFailingTestCases<T> = {
successful: EachTestingContext<T>[];
failing: EachTestingContext<T>[];
};