Files
live-call-asr-monitor/frontend-redesign/patch_header.py
2026-07-16 11:24:02 +08:00

10 lines
251 B
Python

import re
with open('src/components/Header.tsx', 'r') as f:
content = f.read()
content = content.replace(" ONLINE V{publishedVersion}", " ONLINE")
with open('src/components/Header.tsx', 'w') as f:
f.write(content)