SQLite Forum

Problem with select from Sqlite Expo. I can't save the array returned by the query through the hook function
Login
```
// I think the issue is:
{() => setUsers(temp)}
```


```
// This creates a function that you are not calling, so `setUsers` is never executed
() => 
```


```
// Replace with:
setUsers(temp)
```