diff --git a/app/src/App.tsx b/app/src/App.tsx index c4cd85b7..89afc281 100644 --- a/app/src/App.tsx +++ b/app/src/App.tsx @@ -21,6 +21,8 @@ import { startServer, } from '@/lib/tauri'; import { useServerStore } from '@/stores/serverStore'; +import { TOP_SAFE_AREA_PADDING } from '@/lib/constants/ui'; +import { cn } from '@/lib/utils/cn'; // Track if server is starting to prevent duplicate starts let serverStarting = false; @@ -138,7 +140,7 @@ function App() { // Show loading screen while server is starting in Tauri if (isTauri() && !serverReady) { return ( -
+ No audio channels yet. Create your first channel to route voices to specific devices. +
+ ++ {selectedChannelId + ? selectedChannel?.is_default + ? 'Default channel uses system default device' + : 'Click devices to add or remove them from the selected channel' + : 'Select a channel to assign devices'} +
++ {isTauri() + ? 'No audio devices found' + : 'Audio device selection requires Tauri'} +