We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7fc0dc commit c5cd359Copy full SHA for c5cd359
src/components/jobRate/JobCurrentSituation.tsx
@@ -1,6 +1,7 @@
1
"use client";
2
3
import { useEmploymentStats } from "@/apis/applications";
4
+const BASE_URL = process.env.NEXT_PUBLIC_BASE_URL;
5
import useGetClass from "@/util/getClassName";
6
7
export default function JobCurrentSituation() {
@@ -27,7 +28,7 @@ export default function JobCurrentSituation() {
27
28
className="bg-[#fff] border border-[#F7F7F7] rounded-md w-[100px] h-[44px] p-1"
29
>
30
<img
- src={data.logo_url}
31
+ src={`${BASE_URL}/applications/employment${data.logo_url}`}
32
alt={`${data.company_name} 로고`}
33
className="w-full h-auto rounded-md"
34
/>
0 commit comments