diff --git a/front/components/UI/ScaffoldAuth.tsx b/front/components/UI/ScaffoldAuth.tsx index 1adf911..bcb9fd3 100644 --- a/front/components/UI/ScaffoldAuth.tsx +++ b/front/components/UI/ScaffoldAuth.tsx @@ -45,6 +45,7 @@ const ScaffoldAuth: FunctionComponent = ({ ); // eslint-disable-next-line @typescript-eslint/no-var-requires const [banner] = useAssets(require('../../assets/banner.jpg')); + // eslint-disable-next-line @typescript-eslint/no-var-requires const [googleLogo] = useAssets(require('../../assets/google.png')); return ( diff --git a/front/components/V2/SongCardInfo.tsx b/front/components/V2/SongCardInfo.tsx index 0d07d63..68e7c0f 100644 --- a/front/components/V2/SongCardInfo.tsx +++ b/front/components/V2/SongCardInfo.tsx @@ -1,8 +1,14 @@ import Song from '../../models/Song'; import React from 'react'; -import { Image, Platform, View } from 'react-native'; -import { Pressable, Text, PresenceTransition, Icon, useBreakpointValue } from 'native-base'; import { LikeButton } from './SongCardInfoLikeBtn'; +import { Image, Platform, View } from 'react-native'; +import { + Pressable, + Text, + PresenceTransition, + Icon, + useBreakpointValue, +} from 'native-base'; import { Ionicons } from '@expo/vector-icons'; import { useQuery } from '../../Queries'; import API from '../../API';