Skip to content
Snippets Groups Projects
Unverified Commit 6bddea16 authored by Gustavo Saiani's avatar Gustavo Saiani Committed by GitHub
Browse files

Remove unused args from function calls (#24874)

parent 45e5d548
No related merge requests found
......@@ -52,7 +52,7 @@ export const AccordionListCell = ({
</div>
);
} else {
const icon = renderSectionIcon(section, sectionIndex);
const icon = renderSectionIcon(section);
const extra = renderSectionExtra(section, sectionIndex);
const name = section.name;
content = (
......@@ -112,9 +112,9 @@ export const AccordionListCell = ({
} else if (type === "item") {
const isSelected = itemIsSelected(item, itemIndex);
const isClickable = itemIsClickable(item, itemIndex);
const icon = renderItemIcon(item, itemIndex, isSelected);
const name = renderItemName(item, itemIndex, isSelected);
const description = renderItemDescription(item, itemIndex, isSelected);
const icon = renderItemIcon(item);
const name = renderItemName(item);
const description = renderItemDescription(item);
content = (
<ListCellItem
data-testid={itemTestId}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment