diff --git a/front/components/DurationComponent.tsx b/front/components/DurationComponent.tsx index 87ac0e6..5e22b20 100644 --- a/front/components/DurationComponent.tsx +++ b/front/components/DurationComponent.tsx @@ -1,4 +1,4 @@ -import { Box, Icon, Text } from 'native-base'; +import { HStack, Icon, Text } from 'native-base'; import { MaterialIcons } from '@expo/vector-icons'; type DurationComponentProps = { @@ -10,20 +10,26 @@ const DurationComponent = ({ length }: DurationComponentProps) => { const seconds = Math.round(length - minutes * 60); return ( - - + + - {`${minutes}'${seconds}` ?? '--\'--'} + {`${minutes}'${seconds}` ?? "--'--"} - + ); }; -export default DurationComponent; \ No newline at end of file +export default DurationComponent; diff --git a/front/views/SongLobbyView.tsx b/front/views/SongLobbyView.tsx index 7bd6c31..09be78b 100644 --- a/front/views/SongLobbyView.tsx +++ b/front/views/SongLobbyView.tsx @@ -67,7 +67,7 @@ const SongLobbyView = (props: RouteProps) => { } /> - +