Skip to content

Commit

Permalink
fix paths to translation progress images
Browse files Browse the repository at this point in the history
  • Loading branch information
wackerow committed Sep 11, 2023
1 parent 4e89821 commit 1e60cbf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/TranslationChartImage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ const TranslationChartImage: React.FC<IProps> = () => {
const data = useStaticQuery(graphql`
{
pageviewsLight: file(
relativePath: { eq: "translation-program/pageviews-light.png" }
relativePath: { eq: "translation-program/pageviews_light.png" }
) {
childImageSharp {
gatsbyImageData(height: 500, placeholder: BLURRED, quality: 100)
}
}
pageviewsDark: file(
relativePath: { eq: "translation-program/pageviews-dark.png" }
relativePath: { eq: "translation-program/pageviews_dark.png" }
) {
childImageSharp {
gatsbyImageData(height: 500, placeholder: BLURRED, quality: 100)
Expand Down

0 comments on commit 1e60cbf

Please sign in to comment.