mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-05 04:19:55 +00:00
refactor(StreamingServerInputs): non null value
This commit is contained in:
parent
a162397d29
commit
eab1b8def3
1 changed files with 1 additions and 1 deletions
|
|
@ -183,7 +183,7 @@ const useStreamingServerSettingsInputs = (streamingServer) => {
|
|||
value: name,
|
||||
}))
|
||||
],
|
||||
value: streamingServer.settings.content.transcodeProfile ?? null,
|
||||
value: streamingServer.settings.content.transcodeProfile,
|
||||
onSelect: (value) => {
|
||||
core.transport.dispatch({
|
||||
action: 'StreamingServer',
|
||||
|
|
|
|||
Loading…
Reference in a new issue