1
0
Fork 0
mirror of synced 2024-07-07 23:35:49 +12:00

remove log

This commit is contained in:
Peter Clement 2021-12-09 09:24:40 +00:00
parent f03a2ac0cc
commit 6798594be3
2 changed files with 1 additions and 2 deletions

View file

@ -62,7 +62,7 @@
<div
class="icon-item"
style="color: {item === selectedIcon ? selectedColor : ''}"
on:click={() => (selectedIcon = item.icon)}
on:click={() => (selectedIcon = item)}
>
<Icon name={item} />
</div>

View file

@ -269,7 +269,6 @@
async function fetchTemplates() {
const response = await api.get("/api/templates?type=app")
templates = await response.json()
console.log(templates)
}
onMount(async () => {