Skip to content

Commit

Permalink
prettier fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jessrey619 committed Nov 26, 2024
1 parent 781b5bc commit f1658d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/Services/TimeInService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public async Task<string> Update(TimeInRequest timeIn)
timeEntry.EndTime = timeIn.EndTime;
timeEntry.BreakStartTime = userSchedule.BreakFrom;
timeEntry.BreakEndTime = userSchedule.BreakTo;
timeEntry.Date = timeIn.Date;
timeEntry.Date = DateTime.Now;
context.TimeEntries.Update(timeEntry);
await context.SaveChangesAsync();

Expand Down

0 comments on commit f1658d4

Please sign in to comment.