Sort properties

This commit is contained in:
Nicola Benaglia 2025-05-30 08:16:49 +02:00
parent 06f0d45677
commit 5215e7ad5b

View File

@ -524,12 +524,12 @@ export const AppsDesktop = ({
}
return (
<AppViewerContainer
key={tab?.tabId}
hide={isNewTabWindow}
isSelected={tab?.tabId === selectedTab?.tabId}
app={tab}
ref={iframeRefs.current[tab.tabId]}
hide={isNewTabWindow}
isDevMode={tab?.service ? false : true}
isSelected={tab?.tabId === selectedTab?.tabId}
key={tab?.tabId}
ref={iframeRefs.current[tab.tabId]}
/>
);
})}
@ -539,20 +539,20 @@ export const AppsDesktop = ({
<Box
sx={{
display: 'flex',
width: '100%',
flexDirection: 'column',
height: '100vh',
overflow: 'auto',
width: '100%',
}}
>
<Spacer height="30px" />
<AppsHomeDesktop
myName={myName}
availableQapps={availableQapps}
setMode={setMode}
myApp={myApp}
myName={myName}
myWebsite={myWebsite}
setMode={setMode}
/>
</Box>
</>