Skip to content

Commit

Permalink
Update Testimonials.svelte
Browse files Browse the repository at this point in the history
updates variable type
  • Loading branch information
jakebogan01 authored Apr 19, 2024
1 parent 37e6aa5 commit 982db1d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib/components/organisms/Testimonials.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@
loadShow();
};
let startX: number;
let startY: number;
let startX: any;
let startY: any;
const handleTouchStart = (event: TouchEvent) => {
startX = event.touches[0].clientX;
Expand Down Expand Up @@ -358,4 +358,4 @@
}
}
}
</style>
</style>

0 comments on commit 982db1d

Please sign in to comment.