Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore: modify image extension issue #131

Merged
merged 1 commit into from
May 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/components/common/DiaryPreviewContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

const DiaryPreviewContent = ({ diaries }) => {

const [tripId, setTripId] = useRecoilState(tripIdState);

Check warning on line 14 in src/components/common/DiaryPreviewContent.js

View workflow job for this annotation

GitHub Actions / build (18.x)

'tripId' is assigned a value but never used

Check warning on line 14 in src/components/common/DiaryPreviewContent.js

View workflow job for this annotation

GitHub Actions / build (18.x)

'tripId' is assigned a value but never used
const [diaryId, setDiaryId] = useRecoilState(diaryIdState);

Check warning on line 15 in src/components/common/DiaryPreviewContent.js

View workflow job for this annotation

GitHub Actions / build (18.x)

'diaryId' is assigned a value but never used

Check warning on line 15 in src/components/common/DiaryPreviewContent.js

View workflow job for this annotation

GitHub Actions / build (18.x)

'diaryId' is assigned a value but never used
const navigate = useNavigate();
const [currentSlideIndex, setCurrentSlideIndex] = useState(0);
const sliderRef = useRef(null);
Expand Down Expand Up @@ -136,6 +136,7 @@
margin: 2rem 2rem 1rem 2rem;
max-width: 100%;
max-height: 100%;
object-fit: cover;
`;

const TitleDiv = styled.div`
Expand Down
1 change: 1 addition & 0 deletions src/components/common/map/MapDrawer.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ const TripImg = styled.img`
width: 90%;
height: 45%;
border-radius: 1.5rem;
object-fit: cover;
`;

const InfoDiv = styled.div`
Expand Down
Loading