Skip to content

Commit 50e8473

Browse files
committed
fix: corrige ordem dos parametros na chamada update_theme
1 parent 4c843e6 commit 50e8473

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/app/api/routes/private/theme_routes/theme_routes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def update_theme_route(
4747
current_user: User = Depends(get_current_user),
4848
db: Session = Depends(get_db),
4949
):
50-
return update_theme(theme_id, theme_update, current_user.id, db)
50+
return update_theme(theme_id, current_user.id, theme_update, db)
5151

5252
@router.delete("/{theme_id}")
5353
def delete_theme_route(

0 commit comments

Comments
 (0)