From a1b5c22aef12069cd5ee1c070de73f844a554259 Mon Sep 17 00:00:00 2001 From: "claude[bot]" <41898282+claude[bot]@users.noreply.github.com> Date: Tue, 24 Mar 2026 20:15:01 +0000 Subject: [PATCH] Fix prettier formatting for react-native imports Break long import line into multiple lines to satisfy prettier's 80 character line limit. Co-authored-by: Samuel Newman --- src/view/com/util/List.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/view/com/util/List.tsx b/src/view/com/util/List.tsx index 18bff4859a..6faf226f4f 100644 --- a/src/view/com/util/List.tsx +++ b/src/view/com/util/List.tsx @@ -1,5 +1,9 @@ import {forwardRef, memo, useDeferredValue, useMemo} from 'react' -import {type LayoutChangeEvent, RefreshControl, type ViewToken} from 'react-native' +import { + type LayoutChangeEvent, + RefreshControl, + type ViewToken, +} from 'react-native' import { type FlatListPropsWithLayout, runOnJS,