Skip to content

Commit

Permalink
Fix motion data
Browse files Browse the repository at this point in the history
  • Loading branch information
NickM-27 committed Mar 12, 2024
1 parent 6940adb commit ab7de66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/src/views/events/RecordingView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export function DesktopRecordingView({
const { data: motionData } = useSWR<MotionData[]>(
severity == "significant_motion"
? [
"review/activity",
"review/activity/motion",
{
before: timeRange.end,
after: timeRange.start,
Expand Down Expand Up @@ -351,7 +351,7 @@ export function MobileRecordingView({
const { data: motionData } = useSWR<MotionData[]>(
severity == "significant_motion"
? [
"review/activity",
"review/activity/motion",
{
before: timeRange.end,
after: timeRange.start,
Expand Down

0 comments on commit ab7de66

Please sign in to comment.