Skip to content

Commit

Permalink
Remove chain image from settings
Browse files Browse the repository at this point in the history
  • Loading branch information
lil5 committed Jul 5, 2024
1 parent d8d3e52 commit 0ce7ac8
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions app/src/pages/Settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ import EditHeaders from "../components/EditHeaders";
import HeaderTitle from "../components/HeaderTitle";
import RoutePrivacyInput from "../components/Settings/RoutePrivacyInput";
import { chainUpdate } from "../api/chain";
import OriginalImageToProxy from "../utils/image_proxy";
const VERSION = import.meta.env.VITE_APP_VERSION;

type State = { openChainSelect?: boolean } | undefined;
Expand Down Expand Up @@ -228,8 +227,6 @@ export default function Settings() {
}
}

let chainImage = OriginalImageToProxy(chain?.image, "400x70,sc");

return (
<IonPage>
<IonHeader collapse="fade">
Expand Down Expand Up @@ -350,11 +347,6 @@ export default function Settings() {
color="background"
>
<IonList>
{chainImage ? (
<IonItem lines="none">
<IonImg src={chainImage} className="tw-mt-4 tw-w-full" />
</IonItem>
) : null}
<IonItem lines="none">
<IonSelect
ref={refChainSelect}
Expand Down

0 comments on commit 0ce7ac8

Please sign in to comment.