formatting
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2026-02-27 22:38:41 +01:00
parent 302cd96267
commit 3104eb7388
2 changed files with 11 additions and 2 deletions

View File

@@ -215,7 +215,11 @@ const Settings = () => {
<BaseBackground>
<SimpleHeader text="Settings" />
<View className="flex items-center mt-4">
<SettingsButton testID="settings-logout-button" onPress={handleLogout} solid={true}>
<SettingsButton
testID="settings-logout-button"
onPress={handleLogout}
solid={true}
>
<Ionicons name="log-out-outline" size={24} color={theme.primeFg} />{" "}
Logout
</SettingsButton>

View File

@@ -8,7 +8,12 @@ interface AuthButtonProps {
testID?: string;
}
const AuthButton = ({ title, onPress, isLoading = false, testID }: AuthButtonProps) => {
const AuthButton = ({
title,
onPress,
isLoading = false,
testID,
}: AuthButtonProps) => {
const { theme } = useThemeStore();
return (
<Pressable