Skip to content

Commit 299197c

Browse files
Took care of incorrect import in FormElement/index.tsx
1 parent 4903b25 commit 299197c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/FormElement/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type {ForwardedRef} from 'react';
22
import React, {useEffect, useRef} from 'react';
33
import type {ViewProps} from 'react-native';
44
import {View} from 'react-native';
5-
import * as ComponentUtils from '@libs/ComponentUtils';
5+
import {ACCESSIBILITY_ROLE_FORM} from '@libs/ComponentUtils/index';
66
import mergeRefs from '@libs/mergeRefs';
77

88
type FormElementProps = ViewProps & {
@@ -42,7 +42,7 @@ function FormElement({ref, ...props}: FormElementProps) {
4242

4343
return (
4444
<View
45-
role={ComponentUtils.ACCESSIBILITY_ROLE_FORM}
45+
role={ACCESSIBILITY_ROLE_FORM}
4646
ref={mergedRef}
4747
// eslint-disable-next-line react/jsx-props-no-spreading
4848
{...props}

0 commit comments

Comments
 (0)