diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-02-22 21:26:10 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-02-22 21:26:10 +1100 |
| commit | 2c47d839dbc14a9095f5f4975b5fc204cd767fa8 (patch) | |
| tree | 055add38806724b8e672ce6ac1ba2af46c47d693 | |
| parent | config: restore to default if not specified (diff) | |
| download | caelestia-shell-2c47d839dbc14a9095f5f4975b5fc204cd767fa8.tar.gz caelestia-shell-2c47d839dbc14a9095f5f4975b5fc204cd767fa8.tar.bz2 caelestia-shell-2c47d839dbc14a9095f5f4975b5fc204cd767fa8.zip | |
config: forgot to remove print
| -rw-r--r-- | config.ts | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -28,7 +28,6 @@ const convertSettings = <T extends object>(obj: T): Settings<T> => const updateSection = (from: { [k: string]: any }, to: { [k: string]: any }, path = "") => { for (const [k, v] of Object.entries(from)) { - print(`${path}${k}:`, to.hasOwnProperty(k)); if (to.hasOwnProperty(k)) { if (isObject(v)) updateSection(v, to[k], `${path}${k}.`); else to[k].set(v); |