Description
The public Live Demo exposes dashboard sections that are not accessible correctly for an unauthenticated visitor.
When opening the Live Demo and navigating to certain sections such as Audience, the page displays:
Something went wrong. Try again in a moment.
Checking the Network tab shows that the page sends a request to:
POST /v1/query
which returns:
401 Unauthorized
Since the Live Demo is publicly accessible and no login flow is presented before accessing these sections, this results in a broken and confusing demo experience.
Steps to reproduce
- Open
https://databuddy.cc/demo
- Click Live Demo
- Navigate to Audience
- Observe the error message
- Open DevTools → Network
- The request to
/v1/query returns 401 Unauthorized
Expected behavior
The Live Demo should either:
- provide access to the supported demo dashboard sections without requiring the visitor to authenticate, or
- clearly indicate that a section requires authentication instead of showing a generic error.
Actual behavior
The page sends a protected API request that returns 401 Unauthorized, and the UI only displays a generic:
Something went wrong. Try again in a moment.
Additional context
The Dashboard itself loads demo data successfully, but navigating to certain other dashboard sections results in the unauthorized request and generic error.
Description
The public Live Demo exposes dashboard sections that are not accessible correctly for an unauthenticated visitor.
When opening the Live Demo and navigating to certain sections such as Audience, the page displays:
Checking the Network tab shows that the page sends a request to:
POST /v1/querywhich returns:
401 UnauthorizedSince the Live Demo is publicly accessible and no login flow is presented before accessing these sections, this results in a broken and confusing demo experience.
Steps to reproduce
https://databuddy.cc/demo/v1/queryreturns401 UnauthorizedExpected behavior
The Live Demo should either:
Actual behavior
The page sends a protected API request that returns
401 Unauthorized, and the UI only displays a generic:Additional context
The Dashboard itself loads demo data successfully, but navigating to certain other dashboard sections results in the unauthorized request and generic error.