Fix notice for users with zero projects

This commit is contained in:
Drew DeVault 2020-07-09 18:13:00 -04:00
parent 1e3e641abc
commit a9fa9ef580
1 changed files with 1 additions and 0 deletions

View File

@ -28,6 +28,7 @@ def index():
@public.route("/getting-started")
@loginrequired
def getting_started():
notice = session.pop("notice", None)
return render_template("new-user-dashboard.html", notice=notice)
@public.route("/projects")