Skip to content

Commit

Permalink
Remove CSS on IMDB link in WLI to make it clear that its a link
Browse files Browse the repository at this point in the history
  • Loading branch information
SegiH committed Jul 6, 2024
1 parent 27f1ce5 commit 5430c92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/WatchListItems/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ export default function WatchListItems() {

<div>
{typeof currentWatchListItem?.IMDB_URL !== "undefined" &&
<a className="foregroundColor linkStyle" href={currentWatchListItem?.IMDB_URL} target='_blank'>{currentWatchListItem?.WatchListItemName}{IMDB_JSON !== null && IMDB_JSON.Year !== null ? ` (${IMDB_JSON.Year})` : ""}</a>
<a href={currentWatchListItem?.IMDB_URL} target='_blank'>{currentWatchListItem?.WatchListItemName}{IMDB_JSON !== null && IMDB_JSON.Year !== null ? ` (${IMDB_JSON.Year})` : ""}</a>
}

{typeof currentWatchListItem?.IMDB_URL === "undefined" &&
Expand Down

0 comments on commit 5430c92

Please sign in to comment.