From a3d2db96457d87b7c9a874d699e51dd5f98750c1 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Thu, 26 Jan 2023 12:53:46 -0600 Subject: Get MVP of web app running --- src/view/com/util/forms/DropdownButton.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/view/com/util/forms/DropdownButton.tsx') diff --git a/src/view/com/util/forms/DropdownButton.tsx b/src/view/com/util/forms/DropdownButton.tsx index 1fa03f4c7..f911529d2 100644 --- a/src/view/com/util/forms/DropdownButton.tsx +++ b/src/view/com/util/forms/DropdownButton.tsx @@ -76,7 +76,11 @@ export function DropdownButton({ onPress={onPress} hitSlop={HITSLOP} // Fix an issue where specific references cause runtime error in jest environment - ref={process.env.JEST_WORKER_ID != null ? null : ref}> + ref={ + typeof process !== 'undefined' && process.env.JEST_WORKER_ID != null + ? null + : ref + }> {children} ) -- cgit 1.4.1