veo-sdk 0.5.2 → 0.5.3

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.cjs CHANGED
@@ -1834,7 +1834,7 @@ var init_banner_renderer = __esm({
1834
1834
  const step = context.guide.guideSteps[idx];
1835
1835
  if (!step) return;
1836
1836
  const position = step.style?.position === "bottom" ? "bottom" : "top";
1837
- const selector = context.nav ? null : step.selector?.trim() ?? null;
1837
+ const selector = step.selector?.trim() || null;
1838
1838
  let anchor = null;
1839
1839
  if (selector) {
1840
1840
  anchor = await waitForElement(selector);