mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-20 14:37:43 +01:00
Dont show extsion banner if extension is working as expected (Duhh!)
This commit is contained in:
parent
c683105d1e
commit
21a5804317
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ export function Layout(props: { children: ReactNode }) {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
{!isMobile && (
|
{extensionState !== "success" && !isMobile && (
|
||||||
<div className="fixed inset-x-0 z-[1000]">
|
<div className="fixed inset-x-0 z-[1000]">
|
||||||
<ExtensionBanner extensionState={extensionState} />
|
<ExtensionBanner extensionState={extensionState} />
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue