diff options
author | dan <dan.abramov@gmail.com> | 2024-06-06 15:00:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-06 15:00:05 +0100 |
commit | 3801932902d1ec141e022c2f680d1ea21c40b7b2 (patch) | |
tree | e29c86df9e13616e0690ae0a9ddf4beb8fbf0d71 | |
parent | 72f46ed7349f5044d7b89fc8c7f5414b0805a67b (diff) | |
download | voidsky-3801932902d1ec141e022c2f680d1ea21c40b7b2.tar.zst |
Fix prettier (#4392)
-rw-r--r-- | src/state/shell/minimal-mode.tsx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/state/shell/minimal-mode.tsx b/src/state/shell/minimal-mode.tsx index 6e608daf4..69ce13062 100644 --- a/src/state/shell/minimal-mode.tsx +++ b/src/state/shell/minimal-mode.tsx @@ -1,5 +1,10 @@ import React from 'react' -import {cancelAnimation, SharedValue, useSharedValue, withSpring} from 'react-native-reanimated' +import { + cancelAnimation, + SharedValue, + useSharedValue, + withSpring, +} from 'react-native-reanimated' type StateContext = SharedValue<number> type SetContext = (v: boolean) => void |