Skip to content

Commit

Permalink
Fix typo for context in robotmodelservice
Browse files Browse the repository at this point in the history
  • Loading branch information
andchiind committed Jan 21, 2025
1 parent 18b8aa7 commit 426b258
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/api/Services/RobotModelService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public async Task<RobotModel> Update(RobotModel robotModel)

public void DetachTracking(FlotillaDbContext context, RobotModel robotModel)
{
_context.Entry(robotModel).State = EntityState.Detached;
context.Entry(robotModel).State = EntityState.Detached;
}
}
}

0 comments on commit 426b258

Please sign in to comment.