Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Commit
·
3701087
1
Parent(s):
28c6e97
fix error message
Browse files
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
|
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 |
|