You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I'm using Siema with Svelte, when I use it with static data like in here, it works really well.
this is my static data example
let data = [
{val:1},
{val:2},
{val:3},
{val:4},
{val:5}
]
But when I use the async data like in here, it's not working. It shows the error Something wrong with your selector 😭
my async data
const fetchData = async () => {
let result = await fetch('https://jsonplaceholder.typicode.com/posts')
let data = await result.json()
console.log(data)
return data
}
The text was updated successfully, but these errors were encountered:
Hi, I'm using Siema with Svelte, when I use it with static data like in here, it works really well.
this is my static data example
But when I use the async data like in here, it's not working. It shows the error
Something wrong with your selector 😭
my async data
The text was updated successfully, but these errors were encountered: