Skip to content

Commit d8f24eb

Browse files
committed
chore: 절대경로 변경, alt 오타 수정
1 parent 1c8c4bf commit d8f24eb

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

src/components/button/KakaoShareButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const KakaoShareButton = ({
4242
<button onClick={handleShare}>
4343
<img
4444
src="/icon/kakaotalk.svg"
45-
alt="카카오통 공유하기 버튼"
45+
alt="카카오톡 공유하기 버튼"
4646
width={72}
4747
height={72}
4848
/>

src/components/modal/ShareModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { useEffect, useState } from "react";
22
import UrlCopyBar from "@/components/button/UrlCopyBar";
3-
import KakaoShareButton from "../button/KakaoShareButton";
43
import TwitterShareButton from "@/components/button/TwitterShareButton";
4+
import KakaoShareButton from "@/components/button/KakaoShareButton";
55

66
interface ShareModalProps {
77
closeModal: () => void;

src/main.tsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
1-
import { StrictMode } from "react";
21
import { createRoot } from "react-dom/client";
32
import "./index.css";
43
import App from "./App";
54

6-
createRoot(document.getElementById("root")!).render(
7-
<StrictMode>
8-
<App />
9-
</StrictMode>
10-
);
5+
createRoot(document.getElementById("root")!).render(<App />);

0 commit comments

Comments
 (0)