Commit 9dfe5fb2 authored by Grant's avatar Grant
Browse files

hide debug tools if not in development mode (fixes #81)

parent 12606f3e
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -42,7 +42,9 @@ const HeaderLeft = () => {
    <div className="box">
      <AccountStanding />
      <Button onPress={() => setInfoSidebar(true)}>Info</Button>
      {import.meta.env.DEV && (
        <Button onPress={() => Debug.openDebugTools()}>Debug Tools</Button>
      )}
    </div>
  );
};