@hanzo/ui 3.8.29 → 3.8.30

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.
@@ -122,10 +122,6 @@ const VideoBlockComponent: React.FC<BlockComponentProps & {
122
122
  const videoDims = b.dim as TShirtDimensions
123
123
  const dim = ((size && size in videoDims) ? videoDims[size] : videoDims.md) as Dimensions
124
124
  const conDim = (constrainTo ? constrain(dim, constrainTo) : dim)
125
- if (b.sources?.[0] === '/assets/commerce/silver/product/luxsilver.mp4') {
126
- console.log("VIDEO BLOCK, dim: ", dim)
127
- console.log("VIDEO BLOCK, const dim: ", conDim)
128
- }
129
125
  return usePoster ? (
130
126
  <Image src={b.poster!} alt='image' width={conDim.w} height={conDim.h} className={className}/>
131
127
  ) : (
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hanzo/ui",
3
- "version": "3.8.29",
3
+ "version": "3.8.30",
4
4
  "description": "Library that contains shared UI primitives, support for a common design system, and other boilerplate support.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",