Skip to content

Commit

Permalink
bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sajochems committed Jan 11, 2024
1 parent 6c71d19 commit 8caee6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/photos/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ const Photo: FunctionalComponent<PhotoProps> = (props) => {
<div class={style.fullimage}>
<div class={style.navigation}>
<div
class={`${style.arrow} ${style.leftArrow}`}
class={`${style.arrow}`}
onClick={(e) => {
e.stopPropagation();
navigate(-1);
Expand All @@ -124,7 +124,7 @@ const Photo: FunctionalComponent<PhotoProps> = (props) => {
&lt;
</div>
<div
class={`${style.arrow} ${style.rightArrow}`}
class={`${style.arrow}`}
onClick={(e) => {
e.stopPropagation(); // Stop event propagation
navigate(1);
Expand Down

0 comments on commit 8caee6e

Please sign in to comment.