Skip to content

Commit

Permalink
webui/settings: remove listen only button
Browse files Browse the repository at this point in the history
is mostly misinterpreted
  • Loading branch information
sreimers committed Jan 2, 2025
1 parent 7bea6dd commit 91c94d2
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions webui/src/components/SettingsModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -170,13 +170,6 @@
>
<MicrophoneIcon class="h-6 w-6 text-white mr-2" aria-hidden="true" /> Join the conversation
</button>
<button
type="button"
class="inline-flex items-center w-full rounded-md border border-transparent bg-gray-600 px-4 py-2 text-base font-medium text-white shadow-sm hover:bg-gray-700 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:ring-offset-2 sm:ml-3 sm:w-auto sm:text-sm"
@click="join_listen()"
>
<SpeakerWaveIcon class="h-6 w-6 text-white mr-2" aria-hidden="true" /> Listen Only
</button>
</div>
</DialogPanel>
</TransitionChild>
Expand All @@ -189,7 +182,7 @@
<script setup lang="ts">
import { Dialog, DialogPanel, DialogTitle, TransitionChild, TransitionRoot } from '@headlessui/vue'
import { RadioGroup, RadioGroupLabel, RadioGroupOption } from '@headlessui/vue'
import { Cog6ToothIcon, SpeakerWaveIcon, MicrophoneIcon } from '@heroicons/vue/24/outline'
import { Cog6ToothIcon, MicrophoneIcon } from '@heroicons/vue/24/outline'
import { Users } from '../ws/users'
import { Webrtc, WebrtcState } from '../webrtc'
import { ref, watch } from 'vue'
Expand Down

0 comments on commit 91c94d2

Please sign in to comment.