[Update] Config Page: Device tab. add mic device list.(not selectable yet.)

This commit is contained in:
Sakamoto Shiina
2024-09-02 17:25:43 +09:00
parent 26691f773f
commit bf21a20315
5 changed files with 31 additions and 6 deletions

View File

@@ -18,6 +18,8 @@ export const App = () => {
getSoftwareVersion,
getMicHostList,
getSelectedMicHost,
getMicDeviceList,
getSelectedMicDevice,
} = useConfig();
useEffect(() => {
@@ -27,8 +29,10 @@ export const App = () => {
getSoftwareVersion();
getMicHostList();
getSelectedMicHost();
getMicDeviceList();
getSelectedMicDevice();
}).catch((err) => {
console.error(err);
});
}
return () => hasRunRef.current = true;