Skip to content

Commit 70c9edd

Browse files
šŸ›Cannot refresh page when only 1 study per user is allowed (#7374)
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
1 parent 6bc3d32 commit 70c9edd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ā€Žservices/web/server/src/simcore_service_webserver/projects/projects_service.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1355,7 +1355,7 @@ async def _open_project() -> bool:
13551355
for uuid in await user_session.find_all_resources_of_user(
13561356
PROJECT_ID_KEY
13571357
)
1358-
if uuid != project_uuid
1358+
if uuid != f"{project_uuid}"
13591359
}
13601360
)
13611361
>= max_number_of_studies_per_user

0 commit comments

Comments
Ā (0)