Skip to content

Commit

Permalink
corrected description for sort setting
Browse files Browse the repository at this point in the history
  • Loading branch information
gauravjot committed Oct 30, 2024
1 parent 32e7df0 commit 7d896b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/(tabs)/settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export default function SettingsScreen() {

<SettingSwitchComponent
title="Remember Sort Preferences"
description="Remember the last sort preferences you used in Home"
description="Remember the last sort preferences you used in Home and Downloads"
isEnabled={store.rememberSortPreferences}
onChange={e => {
store.setRememberedSortPreferences(e);
Expand Down Expand Up @@ -138,7 +138,7 @@ function SettingSwitchComponent({
<Pressable className="active:bg-foreground/10" onPress={() => onChange(!isEnabled)}>
<View className="flex flex-row gap-4 p-4">
<View className="flex-1">
<Text className="mb-1 font-bold">{title}</Text>
<Text className="mb-1 font-bold text-[16.5px]">{title}</Text>
<Text className="text-sm text-zinc-400">{description}</Text>
</View>
<View>
Expand Down

0 comments on commit 7d896b0

Please sign in to comment.