Skip to content

Commit

Permalink
fixes errors found in cloud run logs
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandersimoes committed Dec 27, 2024
1 parent 9dbf3dc commit 9789b19
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion components/occupation-country/Intro.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default function Intro({country, occupation, allCountriesInOccupation}) {
</a>
,{" "}
{FORMATTERS.commas(
allCountriesInOccupationSorted[countryIndex].num_people
allCountriesInOccupationSorted[countryIndex]?.num_people
)}{" "}
of which were born in{" "}
<a href={`/profile/country/${country.slug}`}>{country.country}</a>.
Expand Down
6 changes: 3 additions & 3 deletions styles/NotFound.css
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,13 @@
background-image: url("/images/not-found/error/20408.jpg");
}
.racing-driver {
background-image: url("/images/profile/occupation/racing-driver.jpg");
background-image: url("https://static.pantheon.world/profile/occupation/racing-driver.jpg");
}
.fashion-designer {
background-image: url("/images/profile/occupation/fashion-designer.jpg");
background-image: url("https://static.pantheon.world/profile/occupation/fashion-designer.jpg");
}
.celebrity {
background-image: url("/images/profile/occupation/celebrity.jpg");
background-image: url("https://static.pantheon.world/profile/occupation/celebrity.jpg");
}

.error-photo {
Expand Down

0 comments on commit 9789b19

Please sign in to comment.