@rileybathurst/paddle 1.9.14 → 1.9.15

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": "1.9.14",
4
+ "version": "1.9.15",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "dev": "tsc --noEmit && stay-gold && vite",
@@ -9,6 +9,10 @@ export const PaddleLocationDeck = ({
9
9
  season_end,
10
10
  phone
11
11
  }: PaddleLocationDeckTypes) => {
12
+
13
+ // TODO: testing
14
+ console.log("PaddleLocationDeck phone", phone);
15
+
12
16
  return (
13
17
  <section className="location-deck">
14
18
  {nodes.map((location: PaddleLocationTypes) => (
@@ -186,6 +186,10 @@ export const PaddleLocation = ({
186
186
 
187
187
  const phoneDidgits = Number(phone);
188
188
 
189
+
190
+ // TODO: testing
191
+ console.log("PaddleLocation phone", phone);
192
+
189
193
  const content = (
190
194
  <Content
191
195
  svg={svg}
package/src/phone.tsx CHANGED
@@ -18,6 +18,11 @@ type PhoneTypes = {
18
18
  };
19
19
 
20
20
  const Phone = ({ phone }: PhoneTypes) => {
21
+
22
+
23
+ // TODO: testing
24
+ console.log("phone", phone);
25
+
21
26
  return (
22
27
  <a href={`tel:${phone}`}
23
28
  rel="noopener noreferrer"