Skip to content

Commit

Permalink
Fix url
Browse files Browse the repository at this point in the history
  • Loading branch information
RickV85 committed Jul 19, 2024
1 parent 68f2c35 commit 41158c6
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ const DetailedDayForecast: React.FC<Props> = ({ period }) => {
(score) => score.name === period.name
);

console.log(period);

return (
<article
className="detailed-day-forecast"
Expand All @@ -39,7 +37,7 @@ const DetailedDayForecast: React.FC<Props> = ({ period }) => {
{/* Using img here, had issues with loading using Image component */}
{/* eslint-disable-next-line */}
<img
src={`https://api.weather.gov${period.icon}`}
src={period.icon}
height={60}
width={60}
alt="weather icon"
Expand Down

0 comments on commit 41158c6

Please sign in to comment.