hey y all π , can sombody let me knOW why this app (Next.js TS ) βοΈ that I have doesn t update the data in the database ποΈ but currently only in my UI ?
https://codesandbox.io/p/devbox/landing-page-kcs4sw?file=%2Fapp%2Fadmin%2Fpage.tsx%3A303%2C22
If you refresh does the data persist in your UI? Are you seeing any console errors?
yeah, data is still the same even after refresh, no error related to these types or components
nextJS caches requests. You may need to look into that and how to disable it
Recommended threads
- Update User Error
```ts const { users, databases } = await createAdminClient(); const session = await getLoggedInUser(); const user = await users.get(session.$id); if (!use...
- apple exchange code to token
hello guys, im new here π I have created a project and enabled apple oauth, filled all data (client id, key id, p8 file itself etc). I generate oauth code form...
- How to Avoid Double Requests in function...
I'm currently using Appwrite's `functions.createExecution` in my project. I want to avoid double requests when multiple actions (like searching or pagination) a...