Spaces:
Sleeping
Sleeping
Update influencer_ui.py
Browse files- influencer_ui.py +3 -0
influencer_ui.py
CHANGED
|
@@ -29,6 +29,9 @@ def show_influencer_search_page():
|
|
| 29 |
st.markdown("Discover influencers by name, niche, location, follower count, and more.")
|
| 30 |
search_query = st.text_input("Search Influencers", "")
|
| 31 |
|
|
|
|
|
|
|
|
|
|
| 32 |
|
| 33 |
# Advanced Filters (placeholder functionality)
|
| 34 |
st.markdown("### Advanced Filters")
|
|
|
|
| 29 |
st.markdown("Discover influencers by name, niche, location, follower count, and more.")
|
| 30 |
search_query = st.text_input("Search Influencers", "")
|
| 31 |
|
| 32 |
+
# Session state to keep track of which influencer's details to display
|
| 33 |
+
if 'selected_influencer' not in st.session_state:
|
| 34 |
+
st.session_state.selected_influencer = None
|
| 35 |
|
| 36 |
# Advanced Filters (placeholder functionality)
|
| 37 |
st.markdown("### Advanced Filters")
|