weareinreach / InReach

Elements with ARIA roles must use a valid, non-abstract ARIA role JS-0743
Bug risk
Minor
13 days agoa year old
Elements with ARIA roles must use a valid, non-abstract ARIA role
228			{!isTablet && (
229				<Grid.Col order={2}>
230					<Stack spacing={40}>
231						<ContactSection role='org' parentId={data.id} />232						{sidebar}
233					</Stack>
234				</Grid.Col>
Elements with ARIA roles must use a valid, non-abstract ARIA role
218					{isTablet && (
219						<Stack spacing={40} w='100%'>
220							<Divider />
221							<ContactSection role='org' parentId={data.id} />222							{sidebar}
223						</Stack>
224					)}
Elements with ARIA roles must use a valid, non-abstract ARIA role
163			{!isTablet && (
164				<Grid.Col order={2}>
165					<Stack spacing={40}>
166						<ContactSection role='org' parentId={data.id} />167						<VisitCard locationId={data.id} />
168					</Stack>
169				</Grid.Col>
Elements with ARIA roles must use a valid, non-abstract ARIA role
135					{isTablet && (
136						<Stack spacing={40} w='100%'>
137							<Divider />
138							<ContactSection role='org' parentId={data.id} />139							<Divider />
140							<VisitCard locationId={data.id} />
141						</Stack>
Elements with ARIA roles must use a valid, non-abstract ARIA role
230				</Grid.Col>
231				<Grid.Col order={2}>
232					<Stack spacing={40}>
233						<ContactSection role='org' parentId={data.id} edit />234						<VisitCard locationId={data.id} edit />
235					</Stack>
236				</Grid.Col>