Front: remove Visible IDs

This commit is contained in:
Arthur Jamet
2023-12-22 10:28:55 +01:00
committed by Clément Le Bihan
parent 339e808d27
commit e85a959c26
5 changed files with 10 additions and 8 deletions
+1 -1
View File
@@ -74,7 +74,7 @@ const PlayView = ({ songId, route }: RouteProps<PlayViewProps>) => {
const navigation = useNavigation();
const screenSize = useBreakpointValue({ base: 'small', md: 'big' });
const isPhone = screenSize === 'small';
const song = useQuery(API.getSong(songId), { staleTime: Infinity });
const song = useQuery(API.getSong(songId, ['artist']), { staleTime: Infinity });
const toast = useToast();
const [lastScoreMessage, setLastScoreMessage] = useState<ScoreMessage>();
const webSocket = useRef<WebSocket>();