@rileybathurst/paddle 0.0.92 → 0.0.94
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 +1 -1
- package/src/PaddleTicket.tsx +3 -1
- package/src/PaddleTime.tsx +2 -2
package/package.json
CHANGED
package/src/PaddleTicket.tsx
CHANGED
|
@@ -6,7 +6,8 @@ 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(
|
|
9
|
+
console.log("PaddleTicket below"); // this does seem like it was hitting
|
|
10
|
+
console.log(allStrapiSunsetTourTime);
|
|
10
11
|
|
|
11
12
|
const time = PaddleTime({
|
|
12
13
|
start: start,
|
|
@@ -14,6 +15,7 @@ export function PaddleTicket({ ogimage, slug, name, start, finish, duration, tim
|
|
|
14
15
|
duration: duration,
|
|
15
16
|
timeframe: timeframe,
|
|
16
17
|
allStrapiSunsetTourTime: allStrapiSunsetTourTime,
|
|
18
|
+
slug: slug
|
|
17
19
|
});
|
|
18
20
|
|
|
19
21
|
|
package/src/PaddleTime.tsx
CHANGED
|
@@ -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(
|
|
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();
|