Skip to content

Commit

Permalink
fix: 사진작가 유형 이슈 수정 (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
NeoSelf1 committed Nov 25, 2024
1 parent 4221157 commit ff67246
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/app/api/apis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import axios from 'axios';
interface RecommendPhotographerRequestData {
phone_number: string;
prefer_style: string;
snap_types: number[];
}

interface RegisterAlarmRequestData {
Expand Down
3 changes: 2 additions & 1 deletion src/app/request-custom/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ const RequestCustom = () => {
await recommendPhotographer({
phone_number: phoneNumber,
prefer_style: text,
snap_types: selectedTypes,
});
setIsModalOpen(true);
} catch (error) {
Expand All @@ -67,7 +68,7 @@ const RequestCustom = () => {

<div className="flex flex-col">
<div className="flex justify-between items-center">
<span className="body-1 text-gray-900">원하는 스낵 유형</span>
<span className="body-1 text-gray-900">원하는 스냅 유형</span>
<h2 className="text-gray-500 body-3">복수선택 가능</h2>
</div>

Expand Down

0 comments on commit ff67246

Please sign in to comment.