Skip to content

Commit

Permalink
fix: lil naming fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tshimber committed Aug 12, 2024
1 parent 8c14b79 commit d695ad5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/components/src/components/tab-nav/tab-nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,8 @@ export class TabNav {
if (!nextTab.selected) {
nextTab.selected = true;
}
const targetPanel = this.findPanelForTab(nextTab);
targetPanel.hidden = false;
const nextPanel = this.findPanelForTab(nextTab);
nextPanel.hidden = false;
}

/**
Expand Down

0 comments on commit d695ad5

Please sign in to comment.