Commit graph

4 commits

Author SHA1 Message Date
rcourtman
c91307be94 fix: guest URL icon now appears/disappears immediately after AI sets/removes it
The issue was a SolidJS reactivity problem in the Dashboard component.
When guestMetadata signal was accessed inside a For loop callback and
assigned to a plain variable, SolidJS lost reactive tracking.

Changed from:
  const metadata = guestMetadata()[guestId] || ...
  customUrl={metadata?.customUrl}

To:
  const getMetadata = () => guestMetadata()[guestId] || ...
  customUrl={getMetadata()?.customUrl}

This ensures SolidJS properly tracks the signal dependency when the
getter function is called directly in JSX props.
2025-12-18 14:42:47 +00:00
rcourtman
21abb6ef01 Clarify AI cost estimates with pricing coverage 2025-12-12 13:19:03 +00:00
rcourtman
716a0b8c4d Fix DeepSeek cost attribution and pricing 2025-12-12 10:49:56 +00:00
rcourtman
50c171e3b5 Add estimated USD to AI cost dashboard 2025-12-12 10:43:07 +00:00