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
using const user = computed(() => props.id ? userStore.useGetOnce(props.id).data.value : null), a record that does not exist on server will trigger an infinite loop of querying the server with an uncaught 404 error.
I've tried wrapping the call to useGetOnce in a try/catch without success
The text was updated successfully, but these errors were encountered:
using
const user = computed(() => props.id ? userStore.useGetOnce(props.id).data.value : null)
, a record that does not exist on server will trigger an infinite loop of querying the server with an uncaught 404 error.I've tried wrapping the call to useGetOnce in a try/catch without success
The text was updated successfully, but these errors were encountered: