From 5c57ed7a1a02b465aaca47776b348eb6e446803f Mon Sep 17 00:00:00 2001
From: Boof2015 <75185879+Boof2015@users.noreply.github.com>
Date: Wed, 15 Jul 2026 16:12:59 -0400
Subject: [PATCH] minor settings change
---
src/app/settings/experimental.tsx | 8 --------
src/app/settings/troubleshooting.tsx | 11 +++++++++++
2 files changed, 11 insertions(+), 8 deletions(-)
diff --git a/src/app/settings/experimental.tsx b/src/app/settings/experimental.tsx
index 0b93098..266f019 100644
--- a/src/app/settings/experimental.tsx
+++ b/src/app/settings/experimental.tsx
@@ -58,14 +58,6 @@ export default function ExperimentalSettingsScreen() {
subtitleColor={desktopSyncConflictCount > 0 ? colors.warning : undefined}
onPress={() => router.push('/desktop-sync' as never)}
/>
-
- DEVELOPER
- router.push('/settings/haptics-lab' as never)}
- />
);
}
diff --git a/src/app/settings/troubleshooting.tsx b/src/app/settings/troubleshooting.tsx
index ee895bf..4f8c825 100644
--- a/src/app/settings/troubleshooting.tsx
+++ b/src/app/settings/troubleshooting.tsx
@@ -1,9 +1,11 @@
import { useCallback, useEffect, useState } from 'react';
import { ActivityIndicator, Alert, Pressable, View } from 'react-native';
import { Ionicons } from '@expo/vector-icons';
+import { useRouter } from 'expo-router';
import { Text } from '@/components/Text';
import { ScanProgress } from '@/components/library/ScanProgress';
import {
+ SettingsNavRow,
SettingsSectionLabel,
SettingsSectionScreen,
type SettingsIconName,
@@ -35,6 +37,7 @@ function countLabel(count: number | null, noun: string): string {
export default function TroubleshootingSettingsScreen() {
const styles = useStyles();
const colors = useColors();
+ const router = useRouter();
const isScanning = useLibraryStore((s) => s.isScanning);
const [runningAction, setRunningAction] = useState(null);
const [feedback, setFeedback] = useState<{ kind: 'success' | 'error'; text: string } | null>(null);
@@ -174,6 +177,14 @@ export default function TroubleshootingSettingsScreen() {
) : null}
+
+ DEBUG
+ router.push('/settings/haptics-lab' as never)}
+ />
);
}