@wistia/ui 0.22.2-beta.9c91e2bb.efa3005 → 0.22.2-beta.b4aa4b0b.85aee8d

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/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /*
3
- * @license @wistia/ui v0.22.2-beta.9c91e2bb.efa3005
3
+ * @license @wistia/ui v0.22.2-beta.b4aa4b0b.85aee8d
4
4
  *
5
5
  * Copyright (c) 2024-2026, Wistia, Inc. and its affiliates.
6
6
  *
@@ -1445,7 +1445,7 @@ const useKey = (key, eventHandler, { eventName = "keydown", eventTarget, eventOp
1445
1445
  "TEXTAREA",
1446
1446
  "SELECT"
1447
1447
  ].includes(document.activeElement?.nodeName ?? "") || document.activeElement?.isContentEditable) return;
1448
- let matchesKey = false;
1448
+ let matchesKey;
1449
1449
  if (typeof key === "function") matchesKey = key(handlerEvent);
1450
1450
  else if (typeof key === "string") matchesKey = handlerEvent.key === key;
1451
1451
  else if (key) matchesKey = true;
@@ -14184,7 +14184,7 @@ const Thumbnail = forwardRef(({ gradientBackground = "defaultMidOne", thumbnailI
14184
14184
  storyboard,
14185
14185
  height
14186
14186
  ]);
14187
- let thumbnailContent = null;
14187
+ let thumbnailContent;
14188
14188
  if (storyboard && shouldRenderStoryboard) thumbnailContent = /* @__PURE__ */ jsx(StoryboardRenderer, {
14189
14189
  aspectRatio,
14190
14190
  cursorPosition,