Skip to content

Commit

Permalink
fix: enable developer mode based on build
Browse files Browse the repository at this point in the history
  • Loading branch information
reneaaron committed Oct 3, 2024
1 parent fa639e2 commit 61b41bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/settings/Settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { useSession } from "~/hooks/useSession";
export function Settings() {
const wallet = useAppStore((store) => store.wallets[store.selectedWalletId]);
const [developerCounter, setDeveloperCounter] = React.useState(0);
const [developerMode, setDeveloperMode] = React.useState(false);
const [developerMode, setDeveloperMode] = React.useState(__DEV__);
const { colorScheme, toggleColorScheme } = useColorScheme();
const fiatCurrency = useAppStore((store) => store.fiatCurrency);
const { signOut } = useSession();
Expand Down

0 comments on commit 61b41bf

Please sign in to comment.