@rileybathurst/paddle 1.0.12 → 1.0.13
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
|
@@ -313,9 +313,11 @@ export const PaddleLocationCard = ({
|
|
|
313
313
|
season_start,
|
|
314
314
|
season_end,
|
|
315
315
|
phone,
|
|
316
|
+
phoneNumber,
|
|
316
317
|
offSeasonDetails,
|
|
317
318
|
}: PaddleLocationCardTypes) => {
|
|
318
|
-
|
|
319
|
+
|
|
320
|
+
const phoneDidgits = Number(phoneNumber);
|
|
319
321
|
|
|
320
322
|
if (phone) {
|
|
321
323
|
return (
|
|
@@ -336,7 +338,7 @@ export const PaddleLocationCard = ({
|
|
|
336
338
|
season_start={season_start}
|
|
337
339
|
season_end={season_end}
|
|
338
340
|
offSeasonDetails={offSeasonDetails}
|
|
339
|
-
phoneNumber={
|
|
341
|
+
phoneNumber={phoneDidgits}
|
|
340
342
|
/>
|
|
341
343
|
</div>
|
|
342
344
|
);
|