diff --git a/apps/common/test/Test1442.tsx b/apps/common/test/Test1442.tsx
index 47d4ab067..4538f79eb 100644
--- a/apps/common/test/Test1442.tsx
+++ b/apps/common/test/Test1442.tsx
@@ -1,6 +1,6 @@
import React, {useState} from 'react';
import {ImageLoadEventData, Platform, Image as RNImage} from 'react-native';
-import {Svg, Image} from 'react-native-svg';
+import {Image, Svg} from 'react-native-svg';
export default function Test1442() {
return ;
diff --git a/apps/common/test/Test1813.tsx b/apps/common/test/Test1813.tsx
index dd78b44f7..e9fac0fda 100644
--- a/apps/common/test/Test1813.tsx
+++ b/apps/common/test/Test1813.tsx
@@ -1,12 +1,12 @@
import React from 'react';
import {SvgFromUri, SvgFromXml, SvgUri, SvgXml} from 'react-native-svg';
import {
+ LocalSvg,
SvgCss,
SvgCssUri,
SvgWithCss,
SvgWithCssUri,
WithLocalSvg,
- LocalSvg,
} from 'react-native-svg/css';
const asset = require('./assets/ruby.svg');
diff --git a/apps/common/test/Test1845.tsx b/apps/common/test/Test1845.tsx
index e71a95ce3..8b1162c9a 100644
--- a/apps/common/test/Test1845.tsx
+++ b/apps/common/test/Test1845.tsx
@@ -1,6 +1,5 @@
import React from 'react';
import {SafeAreaView, useColorScheme} from 'react-native';
-import {Svg, Ellipse} from 'react-native-svg';
import Animated, {
createAnimatedPropAdapter,
processColor,
@@ -9,6 +8,7 @@ import Animated, {
withRepeat,
withTiming,
} from 'react-native-reanimated';
+import {Ellipse, Svg} from 'react-native-svg';
const AnimatedEllipse = Animated.createAnimatedComponent(Ellipse);
diff --git a/apps/common/test/Test2086.tsx b/apps/common/test/Test2086.tsx
index ef478d64c..4c1146f40 100644
--- a/apps/common/test/Test2086.tsx
+++ b/apps/common/test/Test2086.tsx
@@ -1,6 +1,6 @@
import React, {useState} from 'react';
+import {Button, StyleSheet, Text, View} from 'react-native';
import Svg, {Path} from 'react-native-svg';
-import {StyleSheet, Text, View, Button} from 'react-native';
export default function Test2086() {
const [display, setDisplay] = useState(false);
@@ -15,7 +15,7 @@ export default function Test2086() {
);
}
-const MySVG = ({style, toggle}) => {
+const MySVG = ({style, toggle}: any) => {
return (