Skip to content

Commit

Permalink
Fix image paths on subpages
Browse files Browse the repository at this point in the history
  • Loading branch information
romanowski committed Oct 11, 2021
1 parent 0bc8787 commit 90d2098
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/src/components/ImageBox.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ export default function ImageBox(props){
<ThemedImage
alt={props.image}
sources={{
light: `img/${props.image}`,
dark: `img/dark/${props.image}`,
light: `/img/${props.image}`,
dark: `/img/dark/${props.image}`,
}}
/>
</div>}
Expand Down

0 comments on commit 90d2098

Please sign in to comment.