prettier
This commit is contained in:
parent
ff8ec628be
commit
ddceb36613
3 changed files with 9 additions and 4 deletions
|
|
@ -12,11 +12,16 @@ export function AudioEngineTargetSelector({ target, onChange, isDisabled }) {
|
||||||
[audioEngineTargets.osc, audioEngineTargets.osc],
|
[audioEngineTargets.osc, audioEngineTargets.osc],
|
||||||
]);
|
]);
|
||||||
return (
|
return (
|
||||||
<div className=' flex flex-col gap-1'>
|
<div className=" flex flex-col gap-1">
|
||||||
<SelectInput isDisabled={isDisabled} options={options} value={target} onChange={onTargetChange} />
|
<SelectInput isDisabled={isDisabled} options={options} value={target} onChange={onTargetChange} />
|
||||||
{target === audioEngineTargets.osc && (
|
{target === audioEngineTargets.osc && (
|
||||||
<div>
|
<div>
|
||||||
<p className='text-sm italic'>⚠ All events routed to OSC, audio is silenced! See <a className='text-blue-500' href="https://strudel.cc/learn/input-output/">Docs</a></p>
|
<p className="text-sm italic">
|
||||||
|
⚠ All events routed to OSC, audio is silenced! See{' '}
|
||||||
|
<a className="text-blue-500" href="https://strudel.cc/learn/input-output/">
|
||||||
|
Docs
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue