remove streamer-specific branding

This commit is contained in:
2026-07-21 19:47:21 -07:00
parent 716c6f3f2f
commit 7eb9d00a50
5 changed files with 22 additions and 22 deletions
+1 -1
View File
@@ -108,7 +108,7 @@ function RecoveryCodes({ codes, onContinue }: { codes: string[]; onContinue: ()
const url = URL.createObjectURL(blob)
const anchor = document.createElement('a')
anchor.href = url
anchor.download = 'luoxingci-recovery-codes.txt'
anchor.download = 'live-component-recovery-codes.txt'
anchor.click()
URL.revokeObjectURL(url)
}