Skip to content

Commit 9d36311

Browse files
committed
Fix linter warnings
1 parent d4fc498 commit 9d36311

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/ra-ui-materialui/src/list/ListGuesser.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ const ListViewGuesser = (props: Omit<ListViewProps, 'children'>) => {
9797
.concat(
9898
Array.from(
9999
new Set(
100-
Array.from(representation.matchAll(/<([^\/\s>]+)/g))
100+
Array.from(representation.matchAll(/<([^/\s>]+)/g))
101101
.map(match => match[1])
102102
.filter(component => component !== 'span')
103103
)

0 commit comments

Comments
 (0)