Changed tab titles
Browse files
components/upload_section.py
CHANGED
|
@@ -2,7 +2,7 @@ import streamlit as st
|
|
| 2 |
|
| 3 |
def render_upload_section(key="file_uploader"):
|
| 4 |
uploaded_file = st.file_uploader(
|
| 5 |
-
"",
|
| 6 |
type=["png", "jpg", "jpeg"],
|
| 7 |
help="Supported formats: PNG, JPG, JPEG",
|
| 8 |
key=key,
|
|
|
|
| 2 |
|
| 3 |
def render_upload_section(key="file_uploader"):
|
| 4 |
uploaded_file = st.file_uploader(
|
| 5 |
+
"Upload a Pokémon card image",
|
| 6 |
type=["png", "jpg", "jpeg"],
|
| 7 |
help="Supported formats: PNG, JPG, JPEG",
|
| 8 |
key=key,
|