Fix merge error

useFailsafeModeStore comes from stores.js not messages.
This commit is contained in:
Marc Brooks 2025-11-10 16:42:57 -06:00 committed by GitHub
parent 8d2876f957
commit ccf9407127
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 4 deletions

View File

@ -16,12 +16,12 @@ import {
} from "react-icons/lu"; } from "react-icons/lu";
import { cx } from "@/cva.config"; import { cx } from "@/cva.config";
import { useUiStore } from "@hooks/stores"; import { useUiStore, useFailsafeModeStore } from "@hooks/stores";
import Card from "@components/Card"; import Card from "@components/Card";
import { LinkButton } from "@components/Button";
import { FeatureFlag } from "@components/FeatureFlag";
import { m, useFailsafeModeStore } from "@localizations/messages.js";
import { FailsafeModeBanner } from "@components/FailSafeModeBanner"; import { FailsafeModeBanner } from "@components/FailSafeModeBanner";
import { FeatureFlag } from "@components/FeatureFlag";
import { LinkButton } from "@components/Button";
import { m } from "@localizations/messages.js";
/* TODO: Migrate to using URLs instead of the global state. To simplify the refactoring, we'll keep the global state for now. */ /* TODO: Migrate to using URLs instead of the global state. To simplify the refactoring, we'll keep the global state for now. */
export default function SettingsRoute() { export default function SettingsRoute() {