mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 16:43:07 +02:00
remove console.log
This commit is contained in:
parent
3f14887d20
commit
0da0980f94
1 changed files with 0 additions and 2 deletions
|
@ -65,7 +65,6 @@ let registries = $ref<Registries | null>(null);
|
||||||
os.api('i/registry/get-all', { scope })
|
os.api('i/registry/get-all', { scope })
|
||||||
.then(res => {
|
.then(res => {
|
||||||
registries = res || {};
|
registries = res || {};
|
||||||
console.log(registries);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
function getDefaultStoreValues() {
|
function getDefaultStoreValues() {
|
||||||
|
@ -120,7 +119,6 @@ async function applyRegistry(id: string) {
|
||||||
// defaultStore
|
// defaultStore
|
||||||
for (const [key, value] of Object.entries(registry.defaultStore)) {
|
for (const [key, value] of Object.entries(registry.defaultStore)) {
|
||||||
if (key in defaultStore.def && defaultStore.def[key].where !== 'account') {
|
if (key in defaultStore.def && defaultStore.def[key].where !== 'account') {
|
||||||
console.log(key);
|
|
||||||
defaultStore.set(key as keyof Registry['defaultStore'], value);
|
defaultStore.set(key as keyof Registry['defaultStore'], value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue