From 2cc1886a6ba78aaadb621d6e21a2f7e970048fdf Mon Sep 17 00:00:00 2001 From: Mohamed Boudra Date: Tue, 21 Jul 2026 20:31:12 +0200 Subject: [PATCH] fix(app): standardize the Vim settings switch --- packages/app/src/screens/settings/editor-section.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/app/src/screens/settings/editor-section.tsx b/packages/app/src/screens/settings/editor-section.tsx index 862ff607b..ec926640e 100644 --- a/packages/app/src/screens/settings/editor-section.tsx +++ b/packages/app/src/screens/settings/editor-section.tsx @@ -1,9 +1,10 @@ -import { Switch, Text, View } from "react-native"; import { useCallback } from "react"; import { useTranslation } from "react-i18next"; +import { Text, View } from "react-native"; +import { Switch } from "@/components/ui/switch"; import { useAppSettings } from "@/hooks/use-settings"; -import { SettingsSection } from "./settings-section"; import { settingsStyles } from "@/styles/settings"; +import { SettingsSection } from "./settings-section"; export function EditorSection() { const { t } = useTranslation();