src: Remove unused data-testids

This removes unused `data-testid`s from the code base.
This commit is contained in:
regexowl 2025-05-07 13:46:53 +02:00 committed by Simon Steinbeiß
parent 2ec85661c4
commit aedbbdc53a
24 changed files with 76 additions and 143 deletions

View file

@ -575,7 +575,7 @@ const Repositories = () => {
refetch={refresh}
/>
) : (
<Table variant="compact" data-testid="repositories-table">
<Table variant="compact">
<Thead>
<Tr>
<Th aria-label="Selected" />
@ -607,10 +607,7 @@ const Repositories = () => {
);
return (
<Tr
key={`${uuid}-${rowIndex}`}
data-testid="repositories-row"
>
<Tr key={`${uuid}-${rowIndex}`}>
<Td
select={{
isSelected: selected.has(uuid),
@ -704,7 +701,7 @@ const Repositories = () => {
<Grid>
<Panel>
<PanelMain>
<Table variant="compact" data-testid="repositories-table">
<Table variant="compact">
<Thead>
<Tr>
<Th aria-label="Selected" />
@ -731,10 +728,7 @@ const Repositories = () => {
} = repo;
return (
<Tr
key={`${uuid}-${rowIndex}`}
data-testid="repositories-row"
>
<Tr key={`${uuid}-${rowIndex}`}>
<Td
select={{
isSelected: true,