siddhartharya commited on
Commit
258a357
Β·
verified Β·
1 Parent(s): 97fe3aa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -722,7 +722,7 @@ def build_app():
722
  # Initialize state
723
  state_bookmarks = gr.State([])
724
 
725
- # Define 'bookmark_selector' BEFORE the tabs to ensure it's available when referenced
726
  bookmark_selector = gr.CheckboxGroup(
727
  label="βœ… Select Bookmarks",
728
  choices=[]
@@ -840,7 +840,7 @@ Navigate through the tabs to explore each feature in detail.
840
  """)
841
 
842
  manage_output = gr.Textbox(label="πŸ”„ Status", interactive=False)
843
- # 'bookmark_selector' is already defined outside the tab
844
  new_category = gr.Dropdown(
845
  label="πŸ†• New Category",
846
  choices=CATEGORIES,
 
722
  # Initialize state
723
  state_bookmarks = gr.State([])
724
 
725
+ # Define 'bookmark_selector' first
726
  bookmark_selector = gr.CheckboxGroup(
727
  label="βœ… Select Bookmarks",
728
  choices=[]
 
840
  """)
841
 
842
  manage_output = gr.Textbox(label="πŸ”„ Status", interactive=False)
843
+ # 'bookmark_selector' is already defined above
844
  new_category = gr.Dropdown(
845
  label="πŸ†• New Category",
846
  choices=CATEGORIES,