From d581f4e8e71adbf2d5f4d92f9e968c31a3ad8ced Mon Sep 17 00:00:00 2001 From: th-kim0823 Date: Sat, 25 Apr 2026 19:57:09 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=ED=8C=9C=EB=A0=88=EC=8A=A4=ED=8A=B8?= =?UTF-8?q?=E2=86=92=EC=8B=A4=EC=9A=A9=EC=84=B1=EC=83=81,=20=EB=A7=88?= =?UTF-8?q?=EB=AC=B4=EB=A6=AC=20=EB=AC=B8=EA=B5=AC=20'=EC=88=98=EA=B3=A0?= =?UTF-8?q?=ED=95=98=EC=85=A8=EC=8A=B5=EB=8B=88=EB=8B=A4!'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 가격 순 매칭: 팜레스트(최고가)→실용성상, 양우산→완성도상, 손선풍기→재미상 - ceremony 마지막 화면: '모든 시상 완료' → '수고하셨습니다!' Co-Authored-By: Claude Opus 4.7 (1M context) --- app.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app.py b/app.py index bd4a0c1..f284aed 100644 --- a/app.py +++ b/app.py @@ -33,8 +33,8 @@ TEAMS = sorted(set(PARTICIPANTS.values())) if PARTICIPANTS else [ CATEGORIES = [ ("fun_team", "🎉 재미상", "손선풍기 5개"), - ("polish_team", "🏆 완성도상", "팜레스트 5개"), - ("utility_team", "🛠 실용성상", "양우산 5개"), + ("polish_team", "🏆 완성도상", "양우산 5개"), + ("utility_team", "🛠 실용성상", "팜레스트 5개"), ] @@ -310,7 +310,7 @@ def render_ceremony(): st.rerun() elif step > len(results): - st.markdown('
🎊 모든 시상 완료 🎊
', unsafe_allow_html=True) + st.markdown('
수고하셨습니다!
', unsafe_allow_html=True) st.balloons() st.snow() if st.button("처음으로", use_container_width=True):