Front: Lint + format

This commit is contained in:
Arthur Jamet
2023-12-28 08:56:29 +01:00
committed by Clément Le Bihan
parent f4cd9e18ea
commit 004a541302
4 changed files with 18 additions and 13 deletions
+5 -3
View File
@@ -7,7 +7,7 @@ import PopupCC from './UI/PopupCC';
const APKDownloadButton = () => {
const [isOpen, setIsOpen] = useState(false);
//
return (
<>
<ButtonBase
@@ -28,8 +28,10 @@ const APKDownloadButton = () => {
icon={ArrowCircleDown2}
type={'filled'}
title={translate('downloadAPK')}
onPress={() => Linking.openURL('https://github.com/Chroma-Case/Chromacase/releases')}
/>
onPress={() =>
Linking.openURL('https://github.com/Chroma-Case/Chromacase/releases')
}
/>
</PopupCC>
</>
);
+1 -1
View File
@@ -165,7 +165,7 @@ const ScaffoldAuth: FunctionComponent<ScaffoldAuthProps> = ({
<Text>{link.label}</Text>
<LinkBase text={link.text} onPress={link.onPress} />
</Wrap>
{ Platform.OS === "web" && <APKDownloadButton/> }
{Platform.OS === 'web' && <APKDownloadButton />}
</Stack>
</View>
</ScrollView>