commit ee2c24b958e889a8c7771d23b42b9e24bb4a7935
parent b3104ae8b09fca49edbc3d3e8e2ee07d46c919a0
Author: triesap <137732411+triesap@users.noreply.github.com>
Date: Mon, 23 Sep 2024 12:10:12 +0000
Add nostr keys button on home screen, edit styles.
Diffstat:
2 files changed, 7 insertions(+), 6 deletions(-)
diff --git a/src/routes/(app)/+page.svelte b/src/routes/(app)/+page.svelte
@@ -40,6 +40,12 @@
key: `handbag-simple`,
weight: `fill`,
},
+ {
+ route: `/nostr/keys`,
+ label: `Keys`,
+ key: `key`,
+ weight: `fill`,
+ },
];
</script>
@@ -73,7 +79,7 @@
</p>
</button>
<div
- class={`grid grid-cols-12 flex flex-row w-full gap-4 justify-start items-center`}
+ class={`grid grid-cols-12 flex flex-row w-full gap-4 gap-y-5 justify-start items-center`}
>
{#each buttons as btn}
<button
diff --git a/src/routes/(app)/models/trade-product/+page.svelte b/src/routes/(app)/models/trade-product/+page.svelte
@@ -25,17 +25,12 @@
}
});
- $: {
- console.log(`models_list `, models_list);
- }
-
const fetch_models = async (): Promise<void> => {
try {
loading_models = true;
const res = await lc.db.trade_product_get({
list: [`all`],
});
- console.log(`res `, res);
if (typeof res !== `string`) models_list = res;
} catch (e) {
console.log(`(error) fetch_models `, e);