Skip to content

Commit c943472

Browse files
committed
1 parent a428b35 commit c943472

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Tabs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ export const Tabs = memo(
157157
onKeyDownCapture={e => onKeyboardNavigation(e)}
158158
>
159159
{tabs.map(({ label, iconId }, tabIndex) => (
160-
<li key={label + (iconId ?? "")} role="presentation">
160+
<li key={tabIndex} role="presentation">
161161
<button
162162
ref={button => (buttonRefs.current[tabIndex] = button)}
163163
id={getTabId(tabIndex)}

0 commit comments

Comments
 (0)