Skip to content

Commit

Permalink
use workspace.handle or request.user.handle vs user.get_handle()
Browse files Browse the repository at this point in the history
  • Loading branch information
nikochiko committed Jan 10, 2025
1 parent a8d1662 commit 760a5ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion routers/account.py
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ def _render_run(pr: PublishedRun):
return

if workspace.is_personal:
if handle := request.user.get_handle():
if handle := (workspace.handle or request.user.handle):
gui.caption(
f"""
All your Saved workflows are here, with public ones listed on your \
Expand Down

0 comments on commit 760a5ba

Please sign in to comment.