Web Developer
so i made this movie app - i hosted it successfully using appwrite but the images arent showing up ---
https://movie-app-jsm.appwrite.network/ this is the movie app link -- on my localhost it works - could someone please help me
Votes
0
Replies
2
Participants
1
Messages
3
Web Developer
so i made this movie app - i hosted it successfully using appwrite but the images arent showing up ---
https://movie-app-jsm.appwrite.network/ this is the movie app link -- on my localhost it works - could someone please help me
Web Developer
Omg it started working - after a few refreshes - i made a change in the moviecard.jsx ``` import React from "react";
const MovieCard = ({ movie: {title,vote_average,poster_path,original_language ,release_date} }) => {
return (
<img src= {poster_path ? https://image.tmdb.org/t/p/w500/${poster_path} : '/no-movie.png'} alt={title} />
{title}
{vote_average ? vote_average.toFixed(1) :"N/A"}
</div>
<span>•</span>
<p className="lang">{original_language}</p>
<span>•</span>
<p className="year">
{release_date ? release_date.split("-")[0] : "N/A" }
</p>
</div>
</div>
</div>
);
};
export default MovieCard;
Web Developer
i had one back slash but it took long for the github change to reflect - ngl i didnt know how to see if my github change actually went through on appwrite ...