Romain Freydiger
Romain Freydiger
Nice approach, it remove the need to handle myself isPresent, includes, equals... Btw tried to implement it but got an infinite loop of Promise... You can find a playground here:...
Okey, I managed to make it work: ```typescript export const ComputedStyle = (target: Question, property: string, pseudoElt: string | null = null) => Question.about(`computed style ${ property } of ${...
Same observation on my project. It look like it is a regression of a fix in the v0.12.0 corrected by @yannbf in https://github.com/storybookjs/test-runner/issues/332
One workaround until it's resolved: ```typescript const get = async (id: string) => { const entity = await supabase.client.from('auth.users').select(`*`) .eq('id', id) .single() .throwOnError(); return entity.data as NonNullable; } ```