@rileybathurst/paddle 0.0.91 → 0.0.93

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@rileybathurst/paddle",
3
3
  "private": false,
4
- "version": "0.0.91",
4
+ "version": "0.0.93",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "dev": "vite",
@@ -6,6 +6,9 @@ import { PaddleTime } from "./PaddleTime"
6
6
 
7
7
  export function PaddleTicket({ ogimage, slug, name, start, finish, duration, timeframe, fitness, excerpt, price, peek, peek_tours_fall_back, tour_page, allStrapiSunsetTourTime }: PaddleTicketTypes) {
8
8
 
9
+ console.log("PaddleTicket below"); // this does seem like it was hitting
10
+ console.log(allStrapiSunsetTourTime);
11
+
9
12
  const time = PaddleTime({
10
13
  start: start,
11
14
  finish: finish,
@@ -14,8 +17,6 @@ export function PaddleTicket({ ogimage, slug, name, start, finish, duration, tim
14
17
  allStrapiSunsetTourTime: allStrapiSunsetTourTime,
15
18
  });
16
19
 
17
- console.log(allStrapiSunsetTourTime);
18
- console.log('time', time);
19
20
 
20
21
  return (
21
22
  <section className="ticket">
@@ -28,8 +28,8 @@ interface TimeTypes {
28
28
  }
29
29
  export const PaddleTime = ({ start, finish, duration, timeframe, slug, allStrapiSunsetTourTime }: TimeTypes) => {
30
30
 
31
- console.log('time 🦄');
32
- console.log('allStrapiSunsetTourTime', allStrapiSunsetTourTime);
31
+ console.log('time below');
32
+ console.log(allStrapiSunsetTourTime);
33
33
 
34
34
  // TODO: sunset is a whole thing
35
35
  const currentDate = new Date();