Add 'Test mode' switch to the profile dropdown

This commit is contained in:
Alex Turchyn
2024-12-30 23:26:48 +02:00
committed by Pete Matsyburka
parent 616aced4e4
commit 19b5a07bac
8 changed files with 44 additions and 28 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
<%= form_for '', url: testing_account_path, method: current_account.testing? ? :delete : :get, html: { class: 'flex' } do |f| %>
<label class="flex items-center justify-between" for="testing_toggle">
<span class="mr-2 text-lg">
<%= t('test_environment') %>
<%= t('test_mode') %>
</span>
<%= f.check_box :testing_toggle, class: 'toggle', checked: current_account.testing?, onchange: 'this.form.requestSubmit()' %>
</label>