Skip to content

Commit

Permalink
feat: apply feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
2paperstar committed Feb 15, 2024
1 parent b2e16cd commit e291400
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/pages/ReviewRegistration.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,7 @@ const tags = [
export default function ReviewRegistration() {
const navigate = useNavigate();
const [star, setStar] = useState<number>(1);
const [selectedCategories, setSelectedCategories] = useState<string[]>([
'맛집',
'혼자',
]);
const [selectedCategories, setSelectedCategories] = useState<string[]>([]);

const handleCategoryClick = (category: string) => {
if (selectedCategories.includes(category)) {
Expand Down Expand Up @@ -183,7 +180,7 @@ export default function ReviewRegistration() {
</div>
<div className="w-full bg-white px-2 py-5 flex flex-col justify-center items-center rounded-xl">
<h3 className="text-base font-bold">
방문한 장소와 어울리는
방문한 장소와 어울리는{' '}
<span className="text-[#2E83F2]">키워드</span>를 골라주세요!
</h3>
<p className="leading-10">누구와 방문하면 좋을 것 같나요?</p>
Expand Down

0 comments on commit e291400

Please sign in to comment.