Closed zrajnai-shapr3d closed 10 months ago
Double quotes are used inside strings starting with double quotes, which causes syntax errors. The error is repeated in 4 places.
e.g ...="--sticky-pane-height: 100vh;"] ... should be ...='--sticky-pane-height: 100vh;']
(note the double quotes changed to single quotes.
This effective broke the violentmonkey script.
👍 Fixed the build script so it properly escapes double quotes from the CSS.
Double quotes are used inside strings starting with double quotes, which causes syntax errors. The error is repeated in 4 places.
e.g ...="--sticky-pane-height: 100vh;"] ... should be ...='--sticky-pane-height: 100vh;']
(note the double quotes changed to single quotes.
This effective broke the violentmonkey script.