From 734d6c961b33bf35eb7594f2408b28c19031cf03 Mon Sep 17 00:00:00 2001 From: Raphael Jenni Date: Fri, 1 Dec 2023 17:01:15 +0100 Subject: Fix persisting of todos sidebar width #1367 (#1460) --- src/features/todos/store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/features/todos/store.ts') diff --git a/src/features/todos/store.ts b/src/features/todos/store.ts index 882fa6a1e..50704c73f 100644 --- a/src/features/todos/store.ts +++ b/src/features/todos/store.ts @@ -164,7 +164,7 @@ export default class TodoStore extends FeatureStore { // Actions - @action _resize = ({ width }) => { + @action _resize = (width: number) => { this._updateSettings({ width, }); -- cgit v1.2.3-54-g00ecf