style(biome): using biome for format, lint, check

This commit is contained in:
2025-11-08 12:58:40 +02:00
parent 075a388ccb
commit fdd1cbbfd5
152 changed files with 3737 additions and 3989 deletions
@@ -5,26 +5,26 @@ import { Label, ListItem, ScrollView, Separator, YGroup } from "tamagui";
import { ScreenView } from "@/ui/components/layout";
export default function Index() {
const router = useRouter();
const router = useRouter();
return (
<ScreenView>
<ScreenView.Heading title="Profile" />
return (
<ScreenView>
<ScreenView.Heading title="Profile" />
<ScrollView width="100%">
<Label>Settings</Label>
<YGroup alignSelf="center" bordered size="$4">
<YGroup.Item>
<ListItem
onPress={() => router.push("/account/settings")}
icon={Settings}
iconAfter={ChevronRight}
title="Settings"
/>
</YGroup.Item>
<Separator />
</YGroup>
</ScrollView>
</ScreenView>
);
<ScrollView width="100%">
<Label>Settings</Label>
<YGroup alignSelf="center" bordered size="$4">
<YGroup.Item>
<ListItem
icon={Settings}
iconAfter={ChevronRight}
onPress={() => router.push("/account/settings")}
title="Settings"
/>
</YGroup.Item>
<Separator />
</YGroup>
</ScrollView>
</ScreenView>
);
}