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
Codesandbox may ask you to confirm to proceed. You can click the button by switching to Preview mode in onlook, and click the "Yes, proceed to preview" link and switch back. The UI should render properly inside the iframe after that.

15
+
16
+
### Authentication Issues
17
+
18
+
If you encounter issues with reloading pages and being unauthenticated then check your node version, install a more recent version, re-install dependencies and restart the project.
19
+
Minimum version `v20.16.0` or latest is recommended.
20
+
21
+
Avoid version `v20.11.0` of Node as it has shown this issue in the past.
22
+
23
+
```bash
24
+
node --version
25
+
```
26
+
27
+
You may have to delete cookies to clear the authentication state.
28
+
29
+

30
+
31
+
### "Column not found" error
32
+
33
+
If you encounter issues such as "Column not found" error, your database may be out of sync with the schema. There are 2 things to try to get it back in sync:
34
+
35
+
1. Run `bun db:push` to push the schema to the database. If there are conflicts, you can try step 2.
36
+
2. Run `bun db:reset` to fully reset the database and re-run the migrations. WARNING: This will delete all data in the database.
0 commit comments