This commit is contained in:
Nicola Benaglia 2025-05-29 20:28:15 +02:00
parent ae648af321
commit ebed921b17
3 changed files with 4 additions and 2 deletions

View File

@ -347,6 +347,7 @@ export const AppsLibraryDesktop = ({
{officialApps?.map((qapp) => { {officialApps?.map((qapp) => {
return ( return (
<ButtonBase <ButtonBase
key={`${qapp?.service}-${qapp?.name}`}
sx={{ sx={{
width: '80px', width: '80px',
}} }}

View File

@ -249,11 +249,11 @@ export const SortablePinnedApps = ({
> >
{transformPinnedApps.map((app) => ( {transformPinnedApps.map((app) => (
<SortableItem <SortableItem
app={app}
id={`${app?.service}-${app?.name}`}
isDesktop={isDesktop} isDesktop={isDesktop}
key={`${app?.service}-${app?.name}`} key={`${app?.service}-${app?.name}`}
id={`${app?.service}-${app?.name}`}
name={app?.name} name={app?.name}
app={app}
/> />
))} ))}
</SortableContext> </SortableContext>

View File

@ -54,6 +54,7 @@ export const Tutorials = () => {
{openTutorialModal?.multi?.map((item, index) => { {openTutorialModal?.multi?.map((item, index) => {
return ( return (
<Tab <Tab
key={index}
sx={{ sx={{
'&.Mui-selected': { '&.Mui-selected': {
color: theme.palette.text.primary, color: theme.palette.text.primary,