mirror of
https://github.com/vector-im/element-web.git
synced 2025-08-21 22:41:07 +02:00
Fix broken string interpolation in chat effects warning
This commit is contained in:
parent
1166e76928
commit
afd9843722
@ -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…
x
Reference in New Issue
Block a user