@rileybathurst/paddle 0.0.116 → 0.0.118
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/PaddleLocationCard.tsx +5 -9
- package/src/PaddleSEO.tsx +1 -1
package/package.json
CHANGED
|
@@ -16,8 +16,6 @@ interface SeasonTypes {
|
|
|
16
16
|
}
|
|
17
17
|
function Season({ name, season_start, season_end, opening_time, closing_time, offSeasonDetails }: SeasonTypes) {
|
|
18
18
|
|
|
19
|
-
console.log(offSeasonDetails);
|
|
20
|
-
|
|
21
19
|
// TODO: these need a query but thats not the most important first step
|
|
22
20
|
if (name === "Free Parking Lot" || name === "Parking" || name === "Delivery") {
|
|
23
21
|
return null;
|
|
@@ -50,14 +48,12 @@ function Season({ name, season_start, season_end, opening_time, closing_time, of
|
|
|
50
48
|
We will reopen<br />
|
|
51
49
|
{season_start}<br />
|
|
52
50
|
Weather Permitting
|
|
51
|
+
</p>
|
|
52
|
+
) : null}
|
|
53
53
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
{offSeasonDetails}
|
|
58
|
-
</>
|
|
59
|
-
) : null}
|
|
60
|
-
|
|
54
|
+
{offSeasonDetails ? (
|
|
55
|
+
<p>
|
|
56
|
+
{offSeasonDetails}
|
|
61
57
|
</p>
|
|
62
58
|
) : null}
|
|
63
59
|
</div>
|
package/src/PaddleSEO.tsx
CHANGED
|
@@ -100,7 +100,7 @@ export const PaddleSEO = ({ title, description, ogImage, ogImageDescription, bre
|
|
|
100
100
|
|
|
101
101
|
const businessName = `${strapiLocale.name} Kayak & Paddleboard rentals and tours`;
|
|
102
102
|
|
|
103
|
-
const PaddleTitle = title ? `${title} | ${businessName}` : `${businessName} | ${strapiLocale.topbar.topbar} `;
|
|
103
|
+
const PaddleTitle = title ? `${title} | ${businessName}` : `${businessName} | ${strapiLocale.topbar.data.topbar} `;
|
|
104
104
|
// TODO: tagline would be a better fallback description
|
|
105
105
|
const PaddleDescription = description || strapiLocale.slogan;
|
|
106
106
|
// url: `${strapiLocale.url}${SE0.url}` || strapiLocale.url,
|