GuglielmoTor commited on
Commit
f6e1ce4
·
verified ·
1 Parent(s): 5455f54

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -99,8 +99,8 @@ with gr.Blocks(theme=gr.themes.Soft(primary_hue="blue", secondary_hue="sky"),
99
  gr.Markdown("System checks for existing data from Bubble. The 'Sync' button activates if new data needs to be fetched from LinkedIn based on the last sync times and data availability.")
100
  sync_data_btn = gr.Button("🔄 Sync LinkedIn Data", variant="primary", visible=False, interactive=False)
101
 
102
- # MODIFIED: Added height=400 (or adjust as needed)
103
- sync_status_html_output = gr.HTML("<p style='text-align:center;'>Sync status will appear here.</p>", height=400)
104
 
105
  dashboard_display_html = gr.HTML("<p style='text-align:center;'>Dashboard loading...</p>")
106
 
 
99
  gr.Markdown("System checks for existing data from Bubble. The 'Sync' button activates if new data needs to be fetched from LinkedIn based on the last sync times and data availability.")
100
  sync_data_btn = gr.Button("🔄 Sync LinkedIn Data", variant="primary", visible=False, interactive=False)
101
 
102
+ # MODIFIED: Removed the 'height' argument as it's not supported directly
103
+ sync_status_html_output = gr.HTML("<p style='text-align:center;'>Sync status will appear here.</p>")
104
 
105
  dashboard_display_html = gr.HTML("<p style='text-align:center;'>Dashboard loading...</p>")
106