Front: Prettier

This commit is contained in:
Arthur Jamet
2023-12-02 08:20:08 +01:00
parent 454835338f
commit c6365113c4
3 changed files with 36 additions and 34 deletions
+6 -6
View File
@@ -333,12 +333,12 @@ const PlayView = ({ songId, route }: RouteProps<PlayViewProps>) => {
zIndex: 100,
}}
>
<PopupCC
isVisible={endResult != undefined}
>{
// eslint-disable-next-line @typescript-eslint/no-explicit-any
(() => endResult ? <ScoreModal {...endResult as any}/> : <></>)()
}</PopupCC>
<PopupCC isVisible={endResult != undefined}>
{
// eslint-disable-next-line @typescript-eslint/no-explicit-any
(() => (endResult ? <ScoreModal {...(endResult as any)} /> : <></>))()
}
</PopupCC>
<PopupCC
title={translate('selectPlayMode')}
description={translate('selectPlayModeExplaination')}