Skip to content

Commit

Permalink
Fix : recruitUrl 오타 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
teagu123 committed Oct 4, 2024
1 parent dc439a7 commit 8c5f11c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions src/pages/univ/components/UnivTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,7 @@ const Tab = () => {
{universities.map((university, index) => (
<T.TabContent
key={index}
onClick={() =>
popupUnivSite(university.recuriteUrl)
}
onClick={() => popupUnivSite(university.recruitUrl)}
>
<T.SchoolLogo>
<img
Expand Down
2 changes: 1 addition & 1 deletion src/query/get/useGetLocationUniv.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import request from '../../api/request';
export interface IUniversity {
universityName: string;
location: string;
recuriteUrl?: string;
recruitUrl?: string;
image?: string;
}

Expand Down

0 comments on commit 8c5f11c

Please sign in to comment.