From 89161cb4e453a7f0e460e1139feacbb32c30b805 Mon Sep 17 00:00:00 2001 From: xenticore Date: Thu, 1 May 2025 18:56:32 -0400 Subject: [PATCH] fix: typo lol --- src/content/content.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/content/content.ts b/src/content/content.ts index 955f2ea..3f0feac 100644 --- a/src/content/content.ts +++ b/src/content/content.ts @@ -421,8 +421,9 @@ function addStyles() { if(__ENV_USERSCRIPT) { const head = document.head || document.getElementsByTagName('head')[0], style = document.createElement('style'); - head.appendChild(style); - style.innerHTML = styleCss; + head.appendChild(style); + style.innerHTML = require('./style.css'); + } } prepareSchema()