ci: trigga på master + formatfix inför Gitea Actions
CI / Typecheck, test & build (push) Failing after 2s

This commit is contained in:
Sven (AAMOS AI)
2026-08-13 17:25:14 +07:00
parent 61d60931ad
commit c32a7e33c7
141 changed files with 40555 additions and 45210 deletions
+2 -11
View File
@@ -1,11 +1,5 @@
import { useState } from "react";
import {
Linking,
Pressable,
StyleSheet,
Text,
View,
} from "react-native";
import { Linking, Pressable, StyleSheet, Text, View } from "react-native";
import { Body, Button, Screen, Small, Title } from "@/components/ui";
import type { TextStyle } from "react-native";
import { acceptConsent } from "@/lib/api";
@@ -55,10 +49,7 @@ export function ConsentScreen({ onAccepted }: ConsentScreenProps) {
</View>
<View style={{ gap: spacing.md, paddingBottom: spacing.lg }}>
<Pressable
onPress={() => setChecked((v) => !v)}
style={styles.checkboxRow}
>
<Pressable onPress={() => setChecked((v) => !v)} style={styles.checkboxRow}>
<View style={[styles.box, checked && styles.boxChecked]}>
{checked && <Text style={styles.checkmark}></Text>}
</View>
@@ -23,7 +23,13 @@ export function useFirstScanCoach() {
return { visible, showIfNeeded, dismiss };
}
export function FirstScanCoach({ visible, onDismiss }: { visible: boolean; onDismiss: () => void }) {
export function FirstScanCoach({
visible,
onDismiss,
}: {
visible: boolean;
onDismiss: () => void;
}) {
return (
<Modal visible={visible} transparent animationType="fade">
<View