Skip to content

Commit 651eaf4

Browse files
committed
FE 에러 수정
1 parent 4c0c987 commit 651eaf4

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Checkout code
1515
uses: actions/checkout@v2
1616

17-
- name: Set up Node.js (또는 다른 언어 환경)
17+
- name: Set up Node.js (언어 환경)
1818
uses: actions/setup-node@v2
1919
with:
2020
node-version: '20'
@@ -27,7 +27,7 @@ jobs:
2727
2828
2929
- name: Run build
30-
run: npm run build --verbose # 또는 프로젝트에 맞는 빌드 명령어
30+
run: npm run build --verbose # 프로젝트에 맞는 빌드 명령어
3131

3232
- name: Docker build & push
3333
run: |

src/components/Indicator.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ const Indicator = ({ order, setOrder }: IndicatorProps) => {
1010
<div className="flex gap-3">
1111
{[0, 1, 2].map((el) => (
1212
<button
13+
key={el}
1314
onClick={() => setOrder(el)}
1415
className={cls(
1516
"bg-white rounded-full w-2 h-2",

0 commit comments

Comments
 (0)