@rileybathurst/paddle 0.0.114 → 0.0.115

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.114",
4
+ "version": "0.0.115",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "dev": "vite",
@@ -47,11 +47,11 @@ function Season({ name, season_start, season_end, opening_time, closing_time, of
47
47
  const seasonStartDate = new Date(season_start);
48
48
 
49
49
  return (
50
- <p>
51
- We&apos;re closed for the season<br />
50
+ <div>
51
+ <p>We&apos;re closed for the season</p>
52
52
 
53
53
  {currentDay < seasonStartDate ? (
54
- <>
54
+ <p>
55
55
  We will reopen<br />
56
56
  {season_start}<br />
57
57
  Weather Permitting
@@ -59,30 +59,27 @@ function Season({ name, season_start, season_end, opening_time, closing_time, of
59
59
  {offSeasonDetails ? (
60
60
  <>
61
61
  <br />
62
- <p>offSeasonDetails</p>
62
+ {offSeasonDetails}
63
63
  </>
64
64
  )
65
65
  : null}
66
66
 
67
- </>
67
+ </p>
68
68
  ) : null}
69
- </p>
69
+ </div>
70
70
  )
71
71
  }
72
72
 
73
73
  return (
74
- <>
74
+ <div>
75
75
  <p>
76
76
  We&apos;re closed for the season
77
77
  </p>
78
78
  {offSeasonDetails ? (
79
- <>
80
- <br />
81
- <p>offSeasonDetails</p>
82
- </>
79
+ <p>{offSeasonDetails}</p>
83
80
  )
84
81
  : null}
85
- </>
82
+ </div>
86
83
  )
87
84
 
88
85
  }