📎 Fix linter issues

This commit is contained in:
Andrey Antukh 2025-01-30 14:41:33 +01:00
parent 10ca2b20e4
commit 1af99f534b
5 changed files with 10 additions and 4 deletions

View file

@ -144,7 +144,7 @@
:modules
{:test {:init-fn frontend-tests.runner/init
:prepend-js "globalThis.navigator = {userAgent: \"\"}"}}}
:prepend-js ";if (typeof globalThis.navigator?.userAgent === 'undefined') { globalThis.navigator = {userAgent: ''}; };"}}}
:lib-penpot
{:target :esm

View file

@ -72,7 +72,7 @@
([context type id media]
(let [file-id (:file-id context)
path (case type
:manifest (str "manifest.json")
:manifest "manifest.json"
:page (str file-id "/" id ".svg")
:colors-list (str file-id "/colors.json")
:colors (let [ext (cm/mtype->extension (:mtype media))]