@rileybathurst/paddle 0.0.123 → 0.0.124

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.123",
4
+ "version": "0.0.124",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "dev": "vite",
@@ -1,6 +1,6 @@
1
1
  import * as React from "react"
2
2
  import { Link } from 'gatsby';
3
- // import Markdown from "react-markdown";
3
+ import Markdown from "react-markdown";
4
4
  import type { LocationCardTypes } from "./types/location-card-types";
5
5
  import HourMin from "./hour-min";
6
6
  import Phone from "./phone";
@@ -126,9 +126,9 @@ function Content({ svg, name, address, description, opening_time, closing_time,
126
126
 
127
127
  (<>
128
128
  <h3 className="elbrus">{name}</h3>
129
- {/* <Markdown className="react-markdown">
129
+ <Markdown className="react-markdown">
130
130
  {address.data.address}
131
- </Markdown> */}
131
+ </Markdown>
132
132
  </>)}
133
133
 
134
134
  </div>
@@ -145,11 +145,9 @@ function Content({ svg, name, address, description, opening_time, closing_time,
145
145
  offSeasonDetails={offSeasonDetails}
146
146
  />
147
147
  ) : (
148
- <>
149
- {/* <Markdown className="react-markdown" >
148
+ <Markdown className="react-markdown" >
150
149
  {description.data.description}
151
- </Markdown> */}
152
- </>
150
+ </Markdown>
153
151
  )}
154
152
  </div>
155
153
  </>
@@ -16,7 +16,7 @@ export interface LocationCardTypes {
16
16
  opening_time: string;
17
17
  closing_time: string;
18
18
 
19
- locale: {
19
+ local: {
20
20
  season_start: string;
21
21
  season_end: string;
22
22
  };