All my dags went completely missing after db reset

So I reset my database using airflow db reset because one of my dag won’t update its task after I deleted it. After resetting the database, naturally I also restarted the scheduler and webserver by using kill -9 command and starting it again with airflow webserver and airflow scheduler on the background. But after doing that, all of my dags went missing from the webserver like this.

I tried to restart the webserver and scheduler over and over again and it still doesn’t work. What’s really weird is that all of the dags still appear on the list when I’m running airflow dags list. So it’s not that the dags are deleted, it’s just won’t appear on the webserver. How should I fix this? Thank you.

(I’m using LocalExecutor and I’m not using Docker at all).