diff options
author | Aylur <[email protected]> | 2024-07-18 18:18:07 +0200 |
---|---|---|
committer | Aylur <[email protected]> | 2024-07-18 18:18:07 +0200 |
commit | 62d71a3c843689cce26de0ede1a1f3569adb45f4 (patch) | |
tree | 15ed10c3f4423f10854525914b0d903ff7b39e7c | |
parent | 97040efe066ec046c72e63658e1aba534ccf2e95 (diff) |
remove leftover print statement
-rw-r--r-- | gjs/src/application.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gjs/src/application.ts b/gjs/src/application.ts index 6a75d46..606bf30 100644 --- a/gjs/src/application.ts +++ b/gjs/src/application.ts @@ -72,7 +72,6 @@ class AstalJS extends Astal.Application { const path: string[] = import.meta.url.split("/").slice(3) const file = path.at(-1)!.replace(".js", ".css") const css = `/${path.slice(0, -1).join("/")}/${file}` - print(path, css) if (GLib.file_test(css, GLib.FileTest.EXISTS)) this.apply_css(css, false) |