Fix type errors in samplerSelect

c63dc418879142f88e8526a9528583465b41a8f0

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +2 -2Ignore whitespace
public/scripts/samplerSelect.js+2 -2
@@ -28,7 +28,7 @@ async function showSamplerSelectPopup() {
2828
2929 const listContainer = $('<div id="apiSamplersList" class="flex-container flexNoGap"></div>');
3030 const APISamplers = await listSamplers(main_api);
3131 listContainer.append(APISamplers.toString());
3232 html.append(listContainer);
3333
3434 const showPromise = new Popup(html, POPUP_TYPE.TEXT, null, { wide: true, large: true, allowVerticalScrolling: true }).show();
@@ -419,7 +419,7 @@ export async function validateDisabledSamplers(redraw = false) {
419419 }
420420 if (redraw) {
421421 let samplersHTML = await listSamplers(main_api);
422422 $('#apiSamplersList').empty().append(samplersHTML.toString());
423423 setSamplerListListeners();
424424 }
425425