davanstrien HF staff commited on
Commit
3701087
·
1 Parent(s): 28c6e97

fix error message

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -382,7 +382,7 @@ def _user_stats(username: str):
382
 
383
  def user_stats(profile: gr.OAuthProfile | None):
384
  if not profile and not local:
385
- return "You must be logged in to remove a dataset"
386
  username = profile.preferred_username
387
  return _user_stats(username)
388
 
 
382
 
383
  def user_stats(profile: gr.OAuthProfile | None):
384
  if not profile and not local:
385
+ return "You must be logged in to view datasets you are tracking"
386
  username = profile.preferred_username
387
  return _user_stats(username)
388