Skip to content

Commit 1635186

Browse files
committed
fix/filename
1 parent 6db377e commit 1635186

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pages/map/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import CummonButton from '@/shared/components/button/CommonButton';
1+
import CommonButton from '@/shared/components/button/CommonButton';
22
import { useState } from 'react';
33

44
export default function CourseSettingPreview() {
@@ -22,7 +22,7 @@ export default function CourseSettingPreview() {
2222
<h1 className="text-title-lg text-gray-700 mb-4">코스 버튼 임시 화면</h1>
2323
<div className="flex flex-wrap justify-center gap-4 max-w-[400px]">
2424
{buttons.map(({ id, label }) => (
25-
<CummonButton
25+
<CommonButton
2626
key={id}
2727
label={label}
2828
variant={active === id ? 'active' : 'default'}

0 commit comments

Comments
 (0)