Skip to content

Commit cb99fdb

Browse files
committed
💎 (Lint): Fix linter
1 parent 9129a70 commit cb99fdb

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

template/src/Containers/ExampleContainer.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,8 @@ const ExampleContainer = () => {
2020
const dispatch = useDispatch()
2121

2222
const [userId, setUserId] = useState('9')
23-
const [
24-
fetchOne,
25-
{ data, isSuccess, isLoading, isFetching, error },
26-
] = useLazyFetchOneQuery()
23+
const [fetchOne, { data, isSuccess, isLoading, isFetching, error }] =
24+
useLazyFetchOneQuery()
2725

2826
useEffect(() => {
2927
fetchOne(userId)

template/src/Theme/themes/default_dark/Images.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
export default function () {
66
return {
77
logo: {
8-
uri:
9-
'https://thecodingmachine.github.io/react-native-boilerplate/img/TOM-small.png',
8+
uri: 'https://thecodingmachine.github.io/react-native-boilerplate/img/TOM-small.png',
109
},
1110
}
1211
}

0 commit comments

Comments
 (0)