Skip to content

Commit

Permalink
fix: resolve link errors (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
junglesub authored Sep 22, 2024
1 parent 83983fe commit 40801d5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const FeedItemGallery = ({ images = [] }) => {
{images.length > 4 && (
<div className="more-images-overlay">
{images.length > 5 && <span>+{images.length - 4}</span>}
<img key={1} src={images[3]} alt={`Image`} />
<img key={1} src={images[3]} alt={`Image 4`} />
</div>
)}
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/main/front/src/components/FeedItemNew/FeedItemNew.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { useState } from "react";
import React from "react";

import kakaotalk from "./kakaotalk.png";
import comment from "./comment.png";
Expand Down
2 changes: 1 addition & 1 deletion src/main/front/src/pages/NewUI.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import "./NewUI.css";
import FeedItemNew from "../components/FeedItemNew/FeedItemNew";
import WeatherData from "../components/FeedItemNew/WeatherData";
import { useEffect, useState } from "react";
import { useState } from "react";
import InfiniteScroll from "react-infinite-scroller";
import { removeDuplicates } from "../tools/tools";

Expand Down

0 comments on commit 40801d5

Please sign in to comment.