ci: trigga på master + formatfix inför Gitea Actions
CI / Typecheck, test & build (push) Failing after 2s
CI / Typecheck, test & build (push) Failing after 2s
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user