Open Issues Need Help
View All on GitHub Error: × Server Actions must be async functions. about 2 months ago
AI Summary: The Next.js application has a server action in `Sidebar.tsx` that is not an async function, resulting in an error. The solution requires modifying the `SideNavbar` function to be an asynchronous function, ensuring it uses `await` if necessary for any asynchronous operations within it. If no asynchronous operations are present, simply adding `async` before `function` should resolve the issue.
Complexity:
2/5
bug help wanted