Skip to content

Commit

Permalink
chore(Tabs): fix wrapTo story (#1363)
Browse files Browse the repository at this point in the history
  • Loading branch information
korvin89 authored Feb 26, 2024
1 parent 43599c2 commit b3d4a1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Tabs/__stories__/Tabs.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ WithWrapTo.args = {
wrapTo(_item: TabsItemProps, node: React.ReactNode) {
return (
// eslint-disable-next-line jsx-a11y/anchor-is-valid
<a key={_item.id} href="#">
<a key={_item.id} href="#" style={{textDecoration: 'none'}}>
{node}
</a>
);
Expand Down

0 comments on commit b3d4a1d

Please sign in to comment.