Skip to content

Commit d9212fb

Browse files
authored
Merge pull request #220 from TUK-DP/feat/216
[feat] 키워드 별 사진 저장
2 parents 2982376 + be1b7b7 commit d9212fb

File tree

20 files changed

+845
-492
lines changed

20 files changed

+845
-492
lines changed

package-lock.json

Lines changed: 25 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
"react-scripts": "5.0.1",
2525
"react-simple-image-slider": "^2.4.1",
2626
"reacticons": "^0.0.1",
27+
"recoil": "^0.7.7",
2728
"redux": "^5.0.1",
2829
"web-vitals": "^2.1.4"
2930
},
@@ -53,5 +54,6 @@
5354
},
5455
"devDependencies": {
5556
"tailwindcss": "^3.4.1"
56-
}
57+
},
58+
"proxy": "https://tukorea-dp.s3.amazonaws.com"
5759
}

src/component/ImageDiary/AIModal.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import React from "react";
22
import BackGroundSkyButton from "../BackGroundSkyButton";
3-
import { IoClose } from "react-icons/io5";
43
import { useNavigate } from "react-router-dom";
54

65
const AIModal = ({ onClose, content, keyword }) => {
@@ -11,7 +10,7 @@ const AIModal = ({ onClose, content, keyword }) => {
1110
return (
1211
<div
1312
className={
14-
"w-full h-full fixed top-0 left-0 flex justify-center items-center bg-opacity-30 bg-black"
13+
"w-full h-full fixed top-0 left-0 flex justify-center items-center bg-opacity-30 bg-black z-10"
1514
}
1615
>
1716
<div className={"absolute bg-white w-4/5 h-fit py-7 px-3 rounded-2xl"}>

0 commit comments

Comments
 (0)