@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,6 +1,6 @@
|
|
|
1
1
|
import * as React from "react"
|
|
2
2
|
import { Link } from 'gatsby';
|
|
3
|
-
|
|
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
|
-
|
|
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
|
-
|
|
152
|
-
</>
|
|
150
|
+
</Markdown>
|
|
153
151
|
)}
|
|
154
152
|
</div>
|
|
155
153
|
</>
|