Skip to content

Commit

Permalink
add fallback rate
Browse files Browse the repository at this point in the history
  • Loading branch information
sashankaryal committed Jan 9, 2025
1 parent 4c917bc commit ed66193
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/packages/state/src/recoil/selectors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ export const disableFrameFiltering = selector<boolean>({
export const dynamicGroupsTargetFrameRate = selector<number>({
key: "dynamicGroupsTargetFrameRate",
get: ({ get }) => {
return get(datasetAppConfig)?.dynamicGroupsTargetFrameRate;
return get(datasetAppConfig)?.dynamicGroupsTargetFrameRate ?? 30;
},
});

Expand Down

0 comments on commit ed66193

Please sign in to comment.