Skip to content

Commit d1f6ef0

Browse files
committed
Fix reference to undefined variable
1 parent 8eae420 commit d1f6ef0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/webamp/js/webampLazy.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,8 @@ class Webamp {
190190
// @ts-ignore
191191
this.store.dispatch({
192192
type: "SET_AVAILABLE_SKINS",
193-
skins: avaliableSkins,
193+
// @ts-ignore
194+
skins: options.avaliableSkins,
194195
});
195196
} else if (availableSkins != null) {
196197
this.store.dispatch({

0 commit comments

Comments
 (0)