diff --git a/backend/models/user.go b/backend/models/user.go index afd1dc3..7af9739 100644 --- a/backend/models/user.go +++ b/backend/models/user.go @@ -96,8 +96,6 @@ func (m UserModel) ListWithProperties(ctx context.Context, userId uuid.UUID) ([] LEFT_JOIN(Notes, Notes.ID.EQ(ImageNotes.NoteID))). WHERE(UserImages.UserID.EQ(UUID(userId))) - fmt.Println(listWithPropertiesStmt.DebugSql()) - images := []ImageWithProperties{} err := listWithPropertiesStmt.QueryContext(ctx, m.dbPool, &images)