1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-07 10:46:24 +03:00

Fix broken string interpolation in chat effects warning

This commit is contained in:
Michael Telatynski
2021-05-18 10:28:37 +01:00
parent 1166e76928
commit afd9843722

View File

@@ -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;