From cd8510f972f7e47566a5250a4af8cf1c1b4489d5 Mon Sep 17 00:00:00 2001 From: pyr0ball Date: Thu, 26 Feb 2026 14:03:55 -0800 Subject: [PATCH] =?UTF-8?q?fix:=20add=20address=20field=20to=20Resume=20Pr?= =?UTF-8?q?ofile=20=E2=80=94=20was=20hidden,=20triggering=20false=20FILL?= =?UTF-8?q?=5FIN=20banner?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/pages/2_Settings.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/pages/2_Settings.py b/app/pages/2_Settings.py index 5d1cd3f..8515c42 100644 --- a/app/pages/2_Settings.py +++ b/app/pages/2_Settings.py @@ -570,6 +570,8 @@ with tab_resume: _zip_code = _field("Zip Code", _info.get("zip_code", ""), "rp_zip") _dob = _field("Date of Birth", _info.get("date_of_birth", ""), "rp_dob", help="MM/DD/YYYY") + _address = _field("Street Address", _info.get("address", ""), "rp_address", + help="Used in job applications. Not shown on your resume.") # ── Experience ──────────────────────────────────────────────────────────── with st.expander("💼 Work Experience"): @@ -654,7 +656,8 @@ with tab_resume: _data["personal_information"] = { **_data.get("personal_information", {}), "name": _name, "surname": _surname, "email": _email, "phone": _phone, - "city": _city, "zip_code": _zip_code, "linkedin": _linkedin, "date_of_birth": _dob, + "city": _city, "zip_code": _zip_code, "address": _address, + "linkedin": _linkedin, "date_of_birth": _dob, } _data["experience_details"] = _updated_exp _data["salary_expectations"] = {"salary_range_usd": _salary_range}