I am building a web application using Next.js 13. I have a page /app/questions/page.tsx which lists all the questions in my database using server-side rendering. When I delete a question, I am using router.push('/questions') from the delete component to navigate back to the questions page. The problem is, after deleting the question, I am being redirected to the questions page, but the deleted question is still visible in the list. If I refresh the questions page, the question is no longer visible, meaning that the data is correctly being updated on the server.