Skip to content

Commit

Permalink
fix: vscode에서 typescript 모듈을 찾지 못하는 이슈 수정 [skip ci] (#98)
Browse files Browse the repository at this point in the history
* chore: 브랜치 트리거 변경

* fix lint
  • Loading branch information
evan-moon authored Jul 17, 2021
1 parent 5674d47 commit fbd7fb7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/alpha-storybook-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Publish Alpha Storybook
on:
push:
branches:
- master
- main
- alpha

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-ui-kit-lib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Release UI Kit
on:
push:
branches:
- master
- main
- alpha
- beta

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/live-storybook-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Publish Live Storybook
on:
push:
branches:
- master
- main

jobs:
storybook-publish:
Expand Down
5 changes: 2 additions & 3 deletions src/components/Tabs/TabsItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,8 @@ function TabItem(
{ children, disabled = false, value = String(children), className, onClick, ...props }: Props,
forwardedRef: Ref<HTMLDivElement>
) {
const { selectedValue, onSelect, indicatorPosition, setIndicatorPosition } = useContext(
TabsContext
);
const { selectedValue, onSelect, indicatorPosition, setIndicatorPosition } =
useContext(TabsContext);
const isSelected = selectedValue === value;
const internalRef = useRef<HTMLDivElement | null>(null);

Expand Down

0 comments on commit fbd7fb7

Please sign in to comment.