mikeboone Claude Sonnet 4.6 commited on
Commit
0b82bc5
·
1 Parent(s): 579ca71

fix: use UI-provided liveboard name instead of Supabase-reloaded value

Browse files

load_gradio_settings() was being called at deploy time, overwriting the
liveboard name the user typed in the UI with whatever was saved in the DB.
Now self.settings (which has the live UI value) takes priority.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

Files changed (1) hide show
  1. chat_interface.py +1 -1
chat_interface.py CHANGED
@@ -3724,7 +3724,7 @@ This chat will update when complete."""
3724
 
3725
  # Load settings
3726
  settings = load_gradio_settings(self._get_effective_user_email())
3727
- liveboard_name = settings.get('liveboard_name', '')
3728
 
3729
  # Default liveboard name to company name (without .com) if blank
3730
  if not liveboard_name:
 
3724
 
3725
  # Load settings
3726
  settings = load_gradio_settings(self._get_effective_user_email())
3727
+ liveboard_name = self.settings.get('liveboard_name', '') or settings.get('liveboard_name', '')
3728
 
3729
  # Default liveboard name to company name (without .com) if blank
3730
  if not liveboard_name: