@rileybathurst/paddle 0.0.40 → 0.0.41
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
|
@@ -108,7 +108,6 @@ function Content({ svg, name, address, description, opening_time, closing_time,
|
|
|
108
108
|
|
|
109
109
|
export function PaddleLocationCard({ svg, name, link, address, description, opening_time, closing_time, locale, background }: LocationCardTypes) {
|
|
110
110
|
if (link.includes('http')) {
|
|
111
|
-
console.log('🦄');
|
|
112
111
|
return (
|
|
113
112
|
<a href={link}
|
|
114
113
|
className={`location ${background}`}
|
|
@@ -128,10 +127,9 @@ export function PaddleLocationCard({ svg, name, link, address, description, open
|
|
|
128
127
|
</a>
|
|
129
128
|
)
|
|
130
129
|
}
|
|
131
|
-
console.log('🦖');
|
|
132
130
|
return (
|
|
133
131
|
<Link
|
|
134
|
-
to={
|
|
132
|
+
to={link}
|
|
135
133
|
className={`location ${background}`}
|
|
136
134
|
>
|
|
137
135
|
<Content
|