Various lint and fixes

This commit is contained in:
Håvar Aambø Fosstveit
2020-04-22 10:26:58 +02:00
parent 66b513cf19
commit 0ed9d4db9b
7 changed files with 30 additions and 24 deletions
+8 -8
View File
@@ -51,10 +51,10 @@ export const setAudioDevices = (devices) =>
});
export const setAudioOutputDevices = (devices) =>
({
type : 'SET_AUDIO_OUTPUT_DEVICES',
payload : { devices }
});
({
type : 'SET_AUDIO_OUTPUT_DEVICES',
payload : { devices }
});
export const setWebcamDevices = (devices) =>
({
@@ -75,10 +75,10 @@ export const setAudioInProgress = (flag) =>
});
export const setAudioOutputInProgress = (flag) =>
({
type : 'SET_AUDIO_OUTPUT_IN_PROGRESS',
payload : { flag }
});
({
type : 'SET_AUDIO_OUTPUT_IN_PROGRESS',
payload : { flag }
});
export const setWebcamInProgress = (flag) =>
({
+4 -4
View File
@@ -5,10 +5,10 @@ export const setSelectedAudioDevice = (deviceId) =>
});
export const setSelectedAudioOutputDevice = (deviceId) =>
({
type : 'CHANGE_AUDIO_OUTPUT_DEVICE',
payload : { deviceId }
});
({
type : 'CHANGE_AUDIO_OUTPUT_DEVICE',
payload : { deviceId }
});
export const setSelectedWebcamDevice = (deviceId) =>
({