hide mobile footer in dm view, fix ProxyImg

This commit is contained in:
Martti Malmi
2023-12-01 17:42:13 +02:00
parent 689839e043
commit 1d5107bd89
4 changed files with 7 additions and 5 deletions

View File

@ -1,5 +1,5 @@
import "./Layout.css";
import { useCallback, useEffect, useMemo, useState } from "react";
import { useCallback } from "react";
import { Outlet, useLocation } from "react-router-dom";
import Icon from "@/Icons/Icon";
@ -59,7 +59,7 @@ export default function Index() {
</div>
<LoginUnlock />
{isStalker && <StalkerModal id={id} />}
{!shouldHideFooter && <Footer/>}
{!shouldHideFooter && <Footer />}
</div>
);
}