Most widget problems fall into one of a few categories: the SDK not loading, a widget element not being detected, a configuration mismatch, or a Content Security Policy (CSP) blocking requests. This page walks through the most common issues and how to fix them.Documentation Index
Fetch the complete documentation index at: https://docs.tally.site/llms.txt
Use this file to discover all available pages before exploring further.
Widget not loading or not appearing
If a widget element exists on the page but nothing renders, work through these checks: 1. Confirm the SDK is ready Open your browser’s JavaScript console and run:"ready". If you see "pending" or "initializing", the SDK hasn’t finished loading yet. If you see "error", there was a problem during initialization — check the console for error messages.
2. Check the data-tallysight-widget-type attribute
The value must exactly match a supported widget type (case-sensitive):
tilefeedbetslipodds-textpromo-tilesbet-builder
data-tallysight-widget-id attribute
The widget ID must match a valid config in the Tallysight platform. Widget IDs are found in the embed dialog on each tile or feed in the Tallysight dashboard. An incorrect or missing ID causes the widget to fail silently.
4. Manually trigger a scan
If auto-detection is disabled, call Tallysight.scan() after the widget element is in the DOM:
Script tag not loading
Check that the<script> tag has type="module" — the SDK is an ES module and will not execute without it:
storage.googleapis.com. Some corporate proxies or firewall rules block requests to GCS. If this is the case, consider self-hosting the widget bundles.
Content Security Policy (CSP) blocking widgets
If your site sets aContent-Security-Policy header, it must allow:
script-src:https://storage.googleapis.com(or your self-hosted domain)connect-src: your Tallysight API domain
Workspace branding not applying
If widgets appear but don’t show your colors or logo:- Confirm your workspace slug is set on the script tag or widget element:
- Check that the slug matches exactly what appears in your Tallysight workspace URL — slugs are case-sensitive and hyphenated.
- If branding was recently updated in the dashboard, allow a few minutes for the change to propagate.
Widgets load on direct visit but not in an SPA
If your site is a single-page application (React, Vue, Angular) and widgets don’t load after client-side navigation, enable auto-detection:Tallysight.scan() after your router renders new content.
Bet builder not appearing
The bet builder widget is opt-in and is not enabled by default. Make sure the script attribute is set:Still having issues?
Contact the Tallysight support team at support@tallysight.com with:- The URL of the page where the issue occurs
- Your workspace slug
- Any error messages from the browser console