Skip to content

Commit

Permalink
Tighten debounce on updating pinned views
Browse files Browse the repository at this point in the history
  • Loading branch information
lbwexler committed Jan 2, 2025
1 parent b484cac commit ca73143
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmp/viewmanager/ViewManagerModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ export class ViewManagerModel<T = PlainObject> extends HoistModel {
track: () => this.userPinned,
run: userPinned => dataAccess.updateStateAsync({userPinned}),
equals: comparer.structural,
debounce: 2 * SECONDS
debounce: 1 * SECONDS
},
{
track: () => this.autoSave,
Expand Down

0 comments on commit ca73143

Please sign in to comment.