mirror of
https://github.com/NovaGM/ModuleBuilder.git
synced 2024-08-15 00:23:33 +00:00
[PCPlugin] Fix improper casing in loadStylesheet replace
This commit is contained in:
parent
00134f0fe2
commit
8af61801e6
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ export default (manifestPath, repo) => {
|
||||||
|
|
||||||
css = css.replace(/\\/g, '\\\\').replace(/\`/g, '\`'); // Escape backticks
|
css = css.replace(/\\/g, '\\\\').replace(/\`/g, '\`'); // Escape backticks
|
||||||
|
|
||||||
return `this.loadStyleSheet(\`${css}\`)`;
|
return `this.loadStylesheet(\`${css}\`)`;
|
||||||
});
|
});
|
||||||
|
|
||||||
const jsCode = `import powercord from '_powercord/global';\n` + content;
|
const jsCode = `import powercord from '_powercord/global';\n` + content;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue