app logo file name fix; Acknowledgment; risk mitigation

This commit is contained in:
yadonglu
2025-02-05 23:37:19 -08:00
parent cb92e432b3
commit dbb86b2f4c
3 changed files with 8 additions and 2 deletions

View File

@@ -259,7 +259,7 @@ def get_header_image_base64():
try:
# Get the absolute path to the image relative to this script
script_dir = Path(__file__).parent
image_path = script_dir.parent.parent / "imgs" / "header_bar_small.png"
image_path = script_dir.parent.parent / "imgs" / "header_bar_thin.png"
with open(image_path, "rb") as image_file:
encoded_string = base64.b64encode(image_file.read()).decode()