()
| 830 | } |
| 831 | |
| 832 | function TranscriberTranslateSection() { |
| 833 | return ( |
| 834 | <section class="flex items-center gap-2"> |
| 835 | <h3 class="text-sm font-bold my-0 h-fit w-32">Translate to English</h3> |
| 836 | <input type="checkbox" onchange={(e) => update_is_translate(e.target.checked)} checked={general_config()?.translate} /> |
| 837 | </section> |
| 838 | ) |
| 839 | } |
| 840 | |
| 841 | function Recorder() { |
| 842 | return ( |
nothing calls this directly
no test coverage detected