Fix broken string interpolation in chat effects warning
This commit is contained in:
parent
1166e76928
commit
afd9843722
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ const EffectsOverlay: FunctionComponent<IProps> = ({ roomWidth }) => {
|
||||||
effect = new Effect(options);
|
effect = new Effect(options);
|
||||||
effectsRef.current[name] = effect;
|
effectsRef.current[name] = effect;
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.warn('Unable to load effect module at \'../../../effects/${name}\'.', err);
|
console.warn(`Unable to load effect module at '../../../effects/${name}.`, err);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return effect;
|
return effect;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue